diff --git a/Copy_of_HW_1.ipynb b/Copy_of_HW_1.ipynb
index 411e866..4e4ffac 100644
--- a/Copy_of_HW_1.ipynb
+++ b/Copy_of_HW_1.ipynb
@@ -23,6 +23,7 @@
"name": "Copy of HW 1.ipynb",
"provenance": [],
"collapsed_sections": [],
+ "toc_visible": true,
"include_colab_link": true
}
},
@@ -66,7 +67,7 @@
"colab": {
"base_uri": "https://localhost:8080/"
},
- "outputId": "dd91688d-0e47-47db-da80-10dba21e887d"
+ "outputId": "6a14aea6-4d74-4439-fec9-94519dfd49d8"
},
"source": [
"from google.colab import drive\n",
@@ -86,11 +87,7 @@
{
"cell_type": "code",
"metadata": {
- "id": "xcsVGV0L3lQ5",
- "colab": {
- "base_uri": "https://localhost:8080/"
- },
- "outputId": "af56f67f-9131-48e2-ccc0-51901e58122e"
+ "id": "xcsVGV0L3lQ5"
},
"source": [
"import json\n",
@@ -111,26 +108,8 @@
"!cp /content/drive/MyDrive/kaggle.json /root/.kaggle/kaggle.json\n",
"!chmod 600 /root/.kaggle/kaggle.json"
],
- "execution_count": 2,
- "outputs": [
- {
- "output_type": "stream",
- "name": "stdout",
- "text": [
- "Requirement already satisfied: kaggle in /usr/local/lib/python3.7/dist-packages (1.5.12)\n",
- "Requirement already satisfied: tqdm in /usr/local/lib/python3.7/dist-packages (from kaggle) (4.62.3)\n",
- "Requirement already satisfied: six>=1.10 in /usr/local/lib/python3.7/dist-packages (from kaggle) (1.15.0)\n",
- "Requirement already satisfied: python-slugify in /usr/local/lib/python3.7/dist-packages (from kaggle) (5.0.2)\n",
- "Requirement already satisfied: certifi in /usr/local/lib/python3.7/dist-packages (from kaggle) (2021.5.30)\n",
- "Requirement already satisfied: urllib3 in /usr/local/lib/python3.7/dist-packages (from kaggle) (1.24.3)\n",
- "Requirement already satisfied: requests in /usr/local/lib/python3.7/dist-packages (from kaggle) (2.23.0)\n",
- "Requirement already satisfied: python-dateutil in /usr/local/lib/python3.7/dist-packages (from kaggle) (2.8.2)\n",
- "Requirement already satisfied: text-unidecode>=1.3 in /usr/local/lib/python3.7/dist-packages (from python-slugify->kaggle) (1.3)\n",
- "Requirement already satisfied: chardet<4,>=3.0.2 in /usr/local/lib/python3.7/dist-packages (from requests->kaggle) (3.0.4)\n",
- "Requirement already satisfied: idna<3,>=2.5 in /usr/local/lib/python3.7/dist-packages (from requests->kaggle) (2.10)\n"
- ]
- }
- ]
+ "execution_count": 6,
+ "outputs": []
},
{
"cell_type": "markdown",
@@ -374,7 +353,7 @@
"# download the dataset from Kaggle and unzip it\n",
"!kaggle datasets download abhishekpatel/flavors-of-cacaocsv -f flavors_of_cacao.csv -p ./datasets/flavors_of_cacao/"
],
- "execution_count": 3,
+ "execution_count": null,
"outputs": [
{
"output_type": "stream",
@@ -401,7 +380,7 @@
"%matplotlib inline\n",
"DB_PATH = './datasets/flavors_of_cacao/flavors_of_cacao.csv'"
],
- "execution_count": 4,
+ "execution_count": null,
"outputs": []
},
{
@@ -412,7 +391,7 @@
"source": [
"conn = sqlite3.connect('flavors_of_cacao.db')"
],
- "execution_count": 5,
+ "execution_count": null,
"outputs": []
},
{
@@ -425,7 +404,7 @@
"c.execute('''CREATE TABLE Cacao (Company text, Bean_Originor text, REF int, ReviewDate int, CocoaPercent real, CompanyLocation text, Rating int, BeanType text, BroadBeanOrigin text)''')\n",
"c.close() # close the cursor"
],
- "execution_count": 6,
+ "execution_count": null,
"outputs": []
},
{
@@ -436,7 +415,7 @@
"source": [
"insert_records = \"INSERT INTO Cacao (Company, Bean_Originor, REF, ReviewDate, CocoaPercent, CompanyLocation, Rating, BeanType, BroadBeanOrigin) VALUES(?, ?,?, ?,?,?,?,?,?)\"\n"
],
- "execution_count": 7,
+ "execution_count": null,
"outputs": []
},
{
@@ -462,7 +441,7 @@
" row_num += 1\n",
"records[0]"
],
- "execution_count": 8,
+ "execution_count": null,
"outputs": [
{
"output_type": "stream",
@@ -499,7 +478,7 @@
"source": [
""
],
- "execution_count": 8,
+ "execution_count": null,
"outputs": []
},
{
@@ -514,7 +493,7 @@
"#c.commit()\n",
"c.close() # close the cursor"
],
- "execution_count": 9,
+ "execution_count": null,
"outputs": []
},
{
@@ -543,7 +522,7 @@
" return rows[0]\n",
"bars_by_country('Fiji')\n"
],
- "execution_count": 10,
+ "execution_count": null,
"outputs": [
{
"output_type": "execute_result",
@@ -587,7 +566,7 @@
" return rows\n",
"cocoa_percent('Swiss')"
],
- "execution_count": 11,
+ "execution_count": null,
"outputs": [
{
"output_type": "execute_result",
@@ -637,7 +616,7 @@
" return rows\n",
"common_bean_type();"
],
- "execution_count": 12,
+ "execution_count": null,
"outputs": [
{
"output_type": "stream",
@@ -680,7 +659,7 @@
" #return rows\n",
"review_avg();"
],
- "execution_count": 23,
+ "execution_count": null,
"outputs": [
{
"output_type": "stream",
@@ -726,7 +705,7 @@
" #return rows\n",
"review_avg_by_company();"
],
- "execution_count": 26,
+ "execution_count": null,
"outputs": [
{
"output_type": "stream",
@@ -779,12 +758,12 @@
"base_uri": "https://localhost:8080/"
},
"id": "X2GxPCsUXNuh",
- "outputId": "f4624ff9-0b88-4beb-fa6b-1cf627324e09"
+ "outputId": "c48ec4d6-dbfb-4bf0-dad1-c70312792b9b"
},
"source": [
"!pip install pony"
],
- "execution_count": 5,
+ "execution_count": 2,
"outputs": [
{
"output_type": "stream",
@@ -792,10 +771,10 @@
"text": [
"Collecting pony\n",
" Downloading pony-0.7.14.tar.gz (290 kB)\n",
- "\u001b[?25l\r\u001b[K |█▏ | 10 kB 21.6 MB/s eta 0:00:01\r\u001b[K |██▎ | 20 kB 28.7 MB/s eta 0:00:01\r\u001b[K |███▍ | 30 kB 35.6 MB/s eta 0:00:01\r\u001b[K |████▌ | 40 kB 21.9 MB/s eta 0:00:01\r\u001b[K |█████▋ | 51 kB 17.1 MB/s eta 0:00:01\r\u001b[K |██████▊ | 61 kB 12.7 MB/s eta 0:00:01\r\u001b[K |████████ | 71 kB 11.7 MB/s eta 0:00:01\r\u001b[K |█████████ | 81 kB 12.5 MB/s eta 0:00:01\r\u001b[K |██████████▏ | 92 kB 12.8 MB/s eta 0:00:01\r\u001b[K |███████████▎ | 102 kB 13.9 MB/s eta 0:00:01\r\u001b[K |████████████▍ | 112 kB 13.9 MB/s eta 0:00:01\r\u001b[K |█████████████▌ | 122 kB 13.9 MB/s eta 0:00:01\r\u001b[K |██████████████▋ | 133 kB 13.9 MB/s eta 0:00:01\r\u001b[K |███████████████▉ | 143 kB 13.9 MB/s eta 0:00:01\r\u001b[K |█████████████████ | 153 kB 13.9 MB/s eta 0:00:01\r\u001b[K |██████████████████ | 163 kB 13.9 MB/s eta 0:00:01\r\u001b[K |███████████████████▏ | 174 kB 13.9 MB/s eta 0:00:01\r\u001b[K |████████████████████▎ | 184 kB 13.9 MB/s eta 0:00:01\r\u001b[K |█████████████████████▍ | 194 kB 13.9 MB/s eta 0:00:01\r\u001b[K |██████████████████████▌ | 204 kB 13.9 MB/s eta 0:00:01\r\u001b[K |███████████████████████▊ | 215 kB 13.9 MB/s eta 0:00:01\r\u001b[K |████████████████████████▉ | 225 kB 13.9 MB/s eta 0:00:01\r\u001b[K |██████████████████████████ | 235 kB 13.9 MB/s eta 0:00:01\r\u001b[K |███████████████████████████ | 245 kB 13.9 MB/s eta 0:00:01\r\u001b[K |████████████████████████████▏ | 256 kB 13.9 MB/s eta 0:00:01\r\u001b[K |█████████████████████████████▎ | 266 kB 13.9 MB/s eta 0:00:01\r\u001b[K |██████████████████████████████▌ | 276 kB 13.9 MB/s eta 0:00:01\r\u001b[K |███████████████████████████████▋| 286 kB 13.9 MB/s eta 0:00:01\r\u001b[K |████████████████████████████████| 290 kB 13.9 MB/s \n",
+ "\u001b[?25l\r\u001b[K |█▏ | 10 kB 16.2 MB/s eta 0:00:01\r\u001b[K |██▎ | 20 kB 20.6 MB/s eta 0:00:01\r\u001b[K |███▍ | 30 kB 23.6 MB/s eta 0:00:01\r\u001b[K |████▌ | 40 kB 26.1 MB/s eta 0:00:01\r\u001b[K |█████▋ | 51 kB 9.4 MB/s eta 0:00:01\r\u001b[K |██████▊ | 61 kB 9.5 MB/s eta 0:00:01\r\u001b[K |████████ | 71 kB 8.0 MB/s eta 0:00:01\r\u001b[K |█████████ | 81 kB 8.8 MB/s eta 0:00:01\r\u001b[K |██████████▏ | 92 kB 8.5 MB/s eta 0:00:01\r\u001b[K |███████████▎ | 102 kB 7.6 MB/s eta 0:00:01\r\u001b[K |████████████▍ | 112 kB 7.6 MB/s eta 0:00:01\r\u001b[K |█████████████▌ | 122 kB 7.6 MB/s eta 0:00:01\r\u001b[K |██████████████▋ | 133 kB 7.6 MB/s eta 0:00:01\r\u001b[K |███████████████▉ | 143 kB 7.6 MB/s eta 0:00:01\r\u001b[K |█████████████████ | 153 kB 7.6 MB/s eta 0:00:01\r\u001b[K |██████████████████ | 163 kB 7.6 MB/s eta 0:00:01\r\u001b[K |███████████████████▏ | 174 kB 7.6 MB/s eta 0:00:01\r\u001b[K |████████████████████▎ | 184 kB 7.6 MB/s eta 0:00:01\r\u001b[K |█████████████████████▍ | 194 kB 7.6 MB/s eta 0:00:01\r\u001b[K |██████████████████████▌ | 204 kB 7.6 MB/s eta 0:00:01\r\u001b[K |███████████████████████▊ | 215 kB 7.6 MB/s eta 0:00:01\r\u001b[K |████████████████████████▉ | 225 kB 7.6 MB/s eta 0:00:01\r\u001b[K |██████████████████████████ | 235 kB 7.6 MB/s eta 0:00:01\r\u001b[K |███████████████████████████ | 245 kB 7.6 MB/s eta 0:00:01\r\u001b[K |████████████████████████████▏ | 256 kB 7.6 MB/s eta 0:00:01\r\u001b[K |█████████████████████████████▎ | 266 kB 7.6 MB/s eta 0:00:01\r\u001b[K |██████████████████████████████▌ | 276 kB 7.6 MB/s eta 0:00:01\r\u001b[K |███████████████████████████████▋| 286 kB 7.6 MB/s eta 0:00:01\r\u001b[K |████████████████████████████████| 290 kB 7.6 MB/s \n",
"\u001b[?25hBuilding wheels for collected packages: pony\n",
" Building wheel for pony (setup.py) ... \u001b[?25l\u001b[?25hdone\n",
- " Created wheel for pony: filename=pony-0.7.14-py3-none-any.whl size=351293 sha256=483e8c4a899cc6c4f5c62c6924b6ff012463599bd1bed0e9950e6a1aec2e0abb\n",
+ " Created wheel for pony: filename=pony-0.7.14-py3-none-any.whl size=351293 sha256=f54361a283e7fcacc9024577240bbb1e0e9d027f65834f3a4d20e358f2d70121\n",
" Stored in directory: /root/.cache/pip/wheels/de/7a/8b/82a3b5a0135fc6bad188f62e1bf6c4843142bc22c144879014\n",
"Successfully built pony\n",
"Installing collected packages: pony\n",
@@ -807,13 +786,47 @@
{
"cell_type": "code",
"metadata": {
- "id": "76DuBa9fWqGp"
+ "id": "76DuBa9fWqGp",
+ "colab": {
+ "base_uri": "https://localhost:8080/"
+ },
+ "outputId": "ba0f4292-6b11-446f-8b66-10ef9a7428e3"
},
"source": [
" !kaggle datasets list -s Kickstarter"
],
- "execution_count": null,
- "outputs": []
+ "execution_count": 7,
+ "outputs": [
+ {
+ "output_type": "stream",
+ "name": "stdout",
+ "text": [
+ "Warning: Looks like you're using an outdated API Version, please consider updating (server 1.5.12 / client 1.5.4)\n",
+ "ref title size lastUpdated downloadCount \n",
+ "------------------------------------------------------ ------------------------------------------ ----- ------------------- ------------- \n",
+ "kemical/kickstarter-projects Kickstarter Projects 37MB 2018-02-08 09:02:30 57159 \n",
+ "socathie/kickstarter-project-statistics Kickstarter Project Statistics 1MB 2019-11-14 06:38:31 6187 \n",
+ "codename007/funding-successful-projects Funding Successful Projects on Kickstarter 20MB 2017-06-20 17:37:38 2997 \n",
+ "yashkantharia/kickstarter-campaigns Kickstarter Campaigns 12MB 2019-03-03 13:46:08 1162 \n",
+ "oscarvilla/kickstarter-nlp kickstarter NLP 11MB 2018-08-09 01:38:57 449 \n",
+ "toshimelonhead/400000-kickstarter-projects 400,000 Kickstarter Projects 0B 2019-07-23 01:23:31 339 \n",
+ "wood2174/mapkickstarter Kickstarter 18MB 2018-03-07 00:01:12 257 \n",
+ "parienza/kickstarter kickstarter 4MB 2017-12-27 02:42:30 272 \n",
+ "yashkantharia/kickstarter-campaigns-dataset-20 Kickstarter Campaigns Dataset 2.0 30MB 2021-01-04 11:57:44 275 \n",
+ "tonyplaysguitar/steam-spy-data-from-api-request Kickstarter videogames released on Steam 1MB 2018-01-21 23:54:08 323 \n",
+ "sripaadsrinivasan/kickstarter-campaigns-dataset Kickstarter Campaigns dataset 34MB 2021-02-08 18:27:31 113 \n",
+ "tayoaki/kickstarter-dataset Kickstarter dataset 2MB 2018-05-09 00:49:56 407 \n",
+ "markusschmitz/kickstarter kickstarter 21MB 2019-05-23 05:34:44 60 \n",
+ "iamsajanbhagat/kickstarter Kickstarter 20MB 2018-01-22 06:31:09 96 \n",
+ "uysalah/archived-kickstarter-projects Archived Kickstarter Projects 1MB 2019-05-10 04:33:22 231 \n",
+ "antonionoca/kickstarter2018nlp kickstarter-2018-nlp 35MB 2019-04-23 22:02:34 299 \n",
+ "ukveteran/kickstarter Kickstarter 20MB 2020-01-03 20:27:30 32 \n",
+ "cravingsformeow/kickstarter-us-2018-cleansed Kickstarter US 2018 Cleansed 5MB 2020-03-24 17:36:42 29 \n",
+ "bob1235/10-000-kickstarter-projects-in-cat-video-games Kickstarter Video Games 18MB 2021-05-21 20:17:22 5 \n",
+ "officerbribe/yks-six-pack YKS Six Pack 219KB 2021-08-05 21:03:58 137 \n"
+ ]
+ }
+ ]
},
{
"cell_type": "code",
@@ -822,22 +835,22 @@
"colab": {
"base_uri": "https://localhost:8080/"
},
- "outputId": "1006e5dc-8297-4a64-d031-de1d687026d4"
+ "outputId": "602f847a-e6f9-46db-a00d-c8f62cde9a8a"
},
"source": [
"DB_PATH = './datasets/kickstarter/ks-projects-201801.csv'\n",
"!kaggle datasets download kemical/kickstarter-projects -f ks-projects-201801.csv -p ./datasets/kickstarter/\n",
"!unzip /content/datasets/kickstarter/ks-projects-201801.csv.zip -d ./datasets/kickstarter/"
],
- "execution_count": 22,
+ "execution_count": 8,
"outputs": [
{
"output_type": "stream",
"name": "stdout",
"text": [
"Downloading ks-projects-201801.csv.zip to ./datasets/kickstarter\n",
- " 44% 9.00M/20.4M [00:00<00:00, 18.9MB/s]\n",
- "100% 20.4M/20.4M [00:00<00:00, 34.7MB/s]\n",
+ " 98% 20.0M/20.4M [00:00<00:00, 34.3MB/s]\n",
+ "100% 20.4M/20.4M [00:00<00:00, 32.0MB/s]\n",
"Archive: /content/datasets/kickstarter/ks-projects-201801.csv.zip\n",
" inflating: ./datasets/kickstarter/ks-projects-201801.csv \n"
]
@@ -858,11 +871,7 @@
{
"cell_type": "code",
"metadata": {
- "colab": {
- "base_uri": "https://localhost:8080/"
- },
- "id": "IOLa0efIXWy-",
- "outputId": "5f7085ba-8c66-4ebf-f538-9c5979a3fe21"
+ "id": "IOLa0efIXWy-"
},
"source": [
"from pony.orm import *\n",
@@ -882,17 +891,8 @@
" pledged = Required(float)\n",
" state = Required(str)"
],
- "execution_count": 32,
- "outputs": [
- {
- "output_type": "stream",
- "name": "stdout",
- "text": [
- "GET NEW CONNECTION\n",
- "RELEASE CONNECTION\n"
- ]
- }
- ]
+ "execution_count": 9,
+ "outputs": []
},
{
"cell_type": "code",
@@ -901,12 +901,12 @@
"base_uri": "https://localhost:8080/"
},
"id": "1PuiCgqXYcOu",
- "outputId": "5e0f3d5f-aa04-4979-a4ca-c53651947f1d"
+ "outputId": "f4d22d44-057a-4df5-da17-89c9fb10a840"
},
"source": [
"show(Project)"
],
- "execution_count": 33,
+ "execution_count": 10,
"outputs": [
{
"output_type": "stream",
@@ -934,13 +934,13 @@
"base_uri": "https://localhost:8080/"
},
"id": "hf1-N4xWZu6f",
- "outputId": "090c63fa-67e6-4fc7-ca8d-fb517b3265a3"
+ "outputId": "36ad74a4-ebe6-4197-e49d-0d2038a66384"
},
"source": [
"set_sql_debug(True) # helps to see what SQL commands are running\n",
"db.generate_mapping(create_tables=True) # create tables"
],
- "execution_count": 34,
+ "execution_count": 11,
"outputs": [
{
"output_type": "stream",
@@ -949,6 +949,19 @@
"GET CONNECTION FROM THE LOCAL POOL\n",
"PRAGMA foreign_keys = false\n",
"BEGIN IMMEDIATE TRANSACTION\n",
+ "CREATE TABLE \"Project\" (\n",
+ " \"id\" INTEGER PRIMARY KEY AUTOINCREMENT,\n",
+ " \"name\" TEXT NOT NULL,\n",
+ " \"category\" TEXT NOT NULL,\n",
+ " \"main_category\" TEXT NOT NULL,\n",
+ " \"currency\" TEXT NOT NULL,\n",
+ " \"deadline\" TEXT NOT NULL,\n",
+ " \"goal\" REAL NOT NULL,\n",
+ " \"launched\" TEXT NOT NULL,\n",
+ " \"pledged\" REAL NOT NULL,\n",
+ " \"state\" TEXT NOT NULL\n",
+ ")\n",
+ "\n",
"SELECT \"Project\".\"id\", \"Project\".\"name\", \"Project\".\"category\", \"Project\".\"main_category\", \"Project\".\"currency\", \"Project\".\"deadline\", \"Project\".\"goal\", \"Project\".\"launched\", \"Project\".\"pledged\", \"Project\".\"state\"\n",
"FROM \"Project\" \"Project\"\n",
"WHERE 0 = 1\n",
@@ -968,14 +981,14 @@
"height": 479
},
"id": "xlDaa_veZ46f",
- "outputId": "2f9f9303-19b8-4626-ef90-5929b61eb438"
+ "outputId": "efef6c78-1b49-4558-940b-8c1ad4dfcb0b"
},
"source": [
"import pandas as pd # we will talk more about pandas in our next lecture\n",
"df = pd.read_csv('/content/datasets/kickstarter/ks-projects-201801.csv',engine ='python')\n",
"df.head()"
],
- "execution_count": 23,
+ "execution_count": 12,
"outputs": [
{
"output_type": "execute_result",
@@ -1123,7 +1136,7 @@
]
},
"metadata": {},
- "execution_count": 23
+ "execution_count": 12
}
]
},
@@ -1139,5117 +1152,113 @@
" Project(name=str(row['name']),category=row['category'],main_category=row['main_category'],currency=row['currency'], deadline=row['deadline'],goal=row['goal'],\n",
" launched=row['launched'], pledged=row['pledged'], state=row['state'])"
],
- "execution_count": 36,
+ "execution_count": 13,
+ "outputs": []
+ },
+ {
+ "cell_type": "code",
+ "metadata": {
+ "id": "0JnETG8icPLW"
+ },
+ "source": [
+ "commit()"
+ ],
+ "execution_count": null,
"outputs": []
},
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "W1K5VTLoYCy3"
+ },
+ "source": [
+ "### Please answer only **one** of the following questions according to your ID number (use the formula ** mod 3 +1**) "
+ ]
+ },
{
"cell_type": "code",
"metadata": {
+ "id": "vwlOZtVHYCy3",
"colab": {
- "base_uri": "https://localhost:8080/",
- "height": 1000
+ "base_uri": "https://localhost:8080/"
},
- "id": "0JnETG8icPLW",
- "outputId": "9ced2557-93f0-4b51-80e6-8674273156ac"
+ "outputId": "541d05a7-c0e4-4c20-8a97-2b12b3ecc8cf"
},
"source": [
- "commit()"
+ "# which question to answer - put your ID number and run the code \n",
+ "your_id = \"036722635\"\n",
+ "q = int(your_id) % 3 + 1\n",
+ "print(\"You need to answer question number %s\" % q)"
],
- "execution_count": 37,
+ "execution_count": 15,
"outputs": [
{
"output_type": "stream",
"name": "stdout",
"text": [
- "\u001b[1;30;43mStreaming output truncated to the last 5000 lines.\u001b[0m\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['EL OTRO LADO (THE OTHER SIDE)', 'Shorts', 'Film & Video', 'USD', '2014-11-05', 7500.0, '2014-10-06 22:51:26', 7675.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['CABARO Swiss Automatic Watch - How Time Is Being Worn Today', 'Product Design', 'Design', 'AUD', '2017-01-11', 59900.0, '2016-12-06 15:52:54', 103532.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['CrystalTome | Creative Collaboration Platform', 'Mixed Media', 'Art', 'USD', '2016-05-26', 10000.0, '2016-04-26 18:36:43', 0.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['MADMAN FROM ATHGARVAN THE TRUTH HURTS', 'Film & Video', 'Film & Video', 'USD', '2012-09-03', 40000.0, '2012-07-14 23:03:49', 0.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "[\"Hoboe's Debut CD! Bring rock oboe to the modern world.\", 'Rock', 'Music', 'USD', '2011-02-07', 2100.0, '2010-11-09 23:47:59', 2224.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['YOUR FAVORITE PICTURE ON THIS SHIRT #myshirtpic (Canceled)', 'Apparel', 'Fashion', 'USD', '2014-08-12', 35706.0, '2014-06-28 01:35:21', 75.0, 'canceled']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Future Hub Digital Trend Mag 2017/18', 'Web', 'Technology', 'AUD', '2016-12-23', 90000.0, '2016-12-09 02:11:36', 20.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['No Regrets', 'Country & Folk', 'Music', 'USD', '2014-07-08', 8500.0, '2014-06-08 14:25:26', 10170.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['TWO GENIUS HUSBANDS at Dixon Place', 'Experimental', 'Theater', 'USD', '2015-04-09', 1350.0, '2015-03-19 05:00:57', 1525.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Cooks', 'Tabletop Games', 'Games', 'CAD', '2017-10-24', 40000.0, '2017-08-25 20:02:25', 230.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Gallery Yes', 'Food', 'Food', 'USD', '2014-11-08', 5000.0, '2014-10-03 15:13:54', 735.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Screamin\\' Cyn Cyn & The Pons\\' final EP \"GIRLS ARE OK\"', 'Indie Rock', 'Music', 'USD', '2013-04-04', 3000.0, '2013-03-05 13:53:10', 3645.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Epistasis album release on The Path Less Traveled Records', 'Rock', 'Music', 'USD', '2012-09-07', 1000.0, '2012-08-03 22:55:15', 1042.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['TruckIt', 'Apps', 'Technology', 'USD', '2016-07-16', 50000.0, '2016-06-16 03:57:54', 0.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Video Chike Chabwera - Give Me a Kiss (Fergel Rise Remix)', 'Electronic Music', 'Music', 'EUR', '2016-03-31', 7000.0, '2016-03-01 00:22:27', 1.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Oraglide Tongue Cleaner - The Simple Remedy for Bad breath', 'Accessories', 'Fashion', 'USD', '2014-07-12', 575.0, '2014-06-09 21:31:39', 81.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['A Home for Rover Dramawerks - Theater off the beaten path.', 'Theater', 'Theater', 'USD', '2014-01-11', 18000.0, '2013-12-12 01:18:13', 25.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Find Your Composer - Fund a new way to network!', 'Music', 'Music', 'USD', '2012-01-01', 15000.0, '2011-12-02 01:19:17', 526.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "[\"P'EAR - earphones proud\", 'Product Design', 'Design', 'CHF', '2016-07-31', 15000.0, '2016-07-01 19:52:33', 0.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Grim Reaper Hippopotamus', 'Tabletop Games', 'Games', 'USD', '2016-12-21', 5000.0, '2016-11-21 23:47:52', 491.0, 'canceled']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Yesterday: Pre-Production Funding', 'Narrative Film', 'Film & Video', 'USD', '2017-06-12', 8400.0, '2017-05-13 01:13:00', 120.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['The Rusty Brothers Next EP', 'Country & Folk', 'Music', 'USD', '2012-10-15', 4500.0, '2012-09-20 20:50:22', 4726.67, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Modulosi: Old Wood, Photos, Quotes, and Art', 'Product Design', 'Design', 'USD', '2013-09-10', 32500.0, '2013-08-10 02:56:38', 1101.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['American Ecstasy Exhibition honoring Golden Age of Porn', 'Photography', 'Photography', 'USD', '2014-04-02', 6000.0, '2014-03-05 01:30:47', 7487.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Headphone Bag for Travellers', 'Product Design', 'Design', 'HKD', '2017-06-30', 100000.0, '2017-05-31 05:11:25', 114160.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Hurt Bird Recording Project', 'Country & Folk', 'Music', 'USD', '2013-05-10', 6700.0, '2013-04-15 19:51:34', 0.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Centennial Dog Park, Vacaville, CA (Canceled)', 'Civic Design', 'Design', 'USD', '2016-07-25', 65000.0, '2016-05-26 20:27:51', 1833.0, 'canceled']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Manchester Punk band Glue Ear want you to be a part of this', 'Rock', 'Music', 'GBP', '2013-08-20', 600.0, '2013-06-21 14:29:00', 102.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Prez Games: Do You Have What it Takes to Win the Presidency?', 'Video Games', 'Games', 'USD', '2012-10-01', 10000.0, '2012-09-11 02:17:02', 70.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['RAIN: A Film Short', 'Shorts', 'Film & Video', 'USD', '2013-05-04', 500.0, '2013-04-23 18:00:51', 540.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "[\"Justyn's\", 'Music', 'Music', 'USD', '2016-01-13', 50000000.0, '2015-12-14 17:30:18', 0.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Easyway: A better iron', 'Technology', 'Technology', 'GBP', '2017-10-19', 25000.0, '2017-09-19 11:00:07', 31.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['The Hat', 'Plays', 'Theater', 'USD', '2015-11-21', 6000.0, '2015-10-15 04:06:08', 6000.66, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['World of Fiction / Graphic Novel / Book one', 'Comics', 'Comics', 'USD', '2013-06-30', 10000.0, '2013-05-31 21:31:37', 2130.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Wall-Sneaks', 'Apps', 'Technology', 'USD', '2015-09-21', 150000.0, '2015-07-24 04:40:05', 0.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "[\"Bierbewertungs Internetplattform 'Bierkipedia'\", 'Drinks', 'Food', 'EUR', '2015-07-18', 100.0, '2015-06-18 22:07:41', 5.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Beerworks', 'Product Design', 'Design', 'USD', '2017-04-09', 3000.0, '2017-03-10 19:38:40', 4001.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['The Computer Classics Card Game', 'Playing Cards', 'Games', 'EUR', '2017-10-03', 5555.0, '2017-08-25 06:20:20', 6386.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Swingos Celebrity Inn Documentary', 'Documentary', 'Film & Video', 'USD', '2015-01-08', 10000.0, '2014-12-09 01:24:12', 11000.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['The SqueeGees Release \"Veggie Soup\"', 'Kids', 'Music', 'USD', '2014-10-08', 8000.0, '2014-09-13 18:55:45', 8622.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Freak Show Apocalypse II a new film by Matthew Broomfield', 'Narrative Film', 'Film & Video', 'USD', '2012-12-25', 20000.0, '2012-11-06 23:00:32', 365.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "[\"Saltire Vendetta Mask's (Canceled)\", 'Ready-to-wear', 'Fashion', 'GBP', '2014-10-26', 4500.0, '2014-09-26 13:44:44', 3338.0, 'canceled']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Blossom Cafe & Lounge', 'Restaurants', 'Food', 'USD', '2015-04-03', 500000.0, '2015-03-04 18:42:18', 110.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Production for new Indie artist. (Canceled)', 'Rock', 'Music', 'USD', '2014-03-08', 10000.0, '2014-02-05 22:11:36', 25.0, 'canceled']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Meeting On Beaver Island', 'Documentary', 'Film & Video', 'USD', '2012-05-01', 2500.0, '2012-03-29 16:39:14', 781.94, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['THE GOSPELS OF KENYA (Canceled)', 'Theater', 'Theater', 'USD', '2013-05-20', 2550.0, '2013-03-21 02:19:25', 1330.0, 'canceled']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['For the Love of Fermentation', 'Food', 'Food', 'USD', '2014-08-08', 2500.0, '2014-07-09 16:25:26', 450.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Confess And Be Free: This just got Weird..The Album Journey', 'Pop', 'Music', 'USD', '2013-11-04', 1500.0, '2013-10-03 02:28:08', 75.0, 'canceled']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Text Blocker', 'Apps', 'Technology', 'USD', '2016-04-16', 30000.0, '2016-03-02 21:50:30', 201.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['A Free Book for Families Who Lost a Child', 'Nonfiction', 'Publishing', 'USD', '2016-09-15', 3218.0, '2016-08-10 02:27:00', 3452.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Decorate Your Home - XL 18\" Sand Dollar Wall Sculpture', 'Sculpture', 'Art', 'USD', '2017-03-06', 5000.0, '2017-02-06 22:18:00', 112.0, 'canceled']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Bot helper for Azubu', 'Apps', 'Technology', 'EUR', '2016-02-03', 100.0, '2016-01-04 22:14:21', 0.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['THE POWER OF THE PENNY BOOK into Ebook- HELPING KIDS!', \"Children's Books\", 'Publishing', 'USD', '2013-11-11', 5500.0, '2013-10-08 19:05:45', 6290.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Beatballs', 'DIY Electronics', 'Technology', 'USD', '2014-10-08', 350000.0, '2014-09-03 15:02:40', 9352.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['The Gaming Gang 2013 Convention Coverage Project (Canceled)', 'Tabletop Games', 'Games', 'USD', '2013-06-16', 2500.0, '2013-05-22 03:07:57', 633.0, 'canceled']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['The witch from hell Horror', 'Horror', 'Film & Video', 'GBP', '2017-06-27', 3500.0, '2017-06-07 08:31:09', 0.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['InterDigs', 'Web', 'Technology', 'GBP', '2014-11-17', 500.0, '2014-10-18 17:00:11', 0.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Renaissance Rock Orchestra - Rockstars create new prog rock!', 'Rock', 'Music', 'USD', '2015-10-17', 9500.0, '2015-09-02 21:51:16', 9565.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Collective Spectra @ Burning Flipside', 'Digital Art', 'Art', 'USD', '2011-05-12', 2000.0, '2011-05-02 04:23:11', 2075.55, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Crewlife: Making our Connection', 'Documentary', 'Film & Video', 'USD', '2015-05-06', 5000.0, '2015-03-17 18:22:07', 1.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['A Rose by Any Other Name.....', 'Art', 'Art', 'USD', '2017-08-19', 250000.0, '2017-06-20 16:33:50', 32.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Hippo-ADK: Create your dream gadget with a smart device', 'Hardware', 'Technology', 'USD', '2014-08-29', 10000.0, '2014-07-15 16:12:40', 15595.51, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Joan Walsh Anglund: Her Life in Story and Poem', 'Documentary', 'Film & Video', 'USD', '2017-10-27', 21000.0, '2017-09-26 21:24:49', 16.0, 'canceled']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['The Fine Print Theatre Company - Inaugural Season', 'Theater', 'Theater', 'USD', '2011-09-05', 10000.0, '2011-08-06 18:03:00', 10036.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['HondaGivesYouWings on YouTube', 'Film & Video', 'Film & Video', 'USD', '2015-04-25', 1000.0, '2015-03-26 18:54:12', 5.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['T-Shirt inspired by Wall Street', 'Fashion', 'Fashion', 'USD', '2013-10-22', 1800.0, '2013-08-23 03:07:42', 0.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Help us teach music to 2000 needy children yearly. For FREE!', 'Music', 'Music', 'NZD', '2015-05-29', 25000.0, '2015-04-29 01:22:11', 9582.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Color Art Book of Photoshop Abstract Digital Art', 'Digital Art', 'Art', 'USD', '2014-06-28', 5000.0, '2014-04-29 01:33:53', 0.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Martin Our Teacher', 'Narrative Film', 'Film & Video', 'USD', '2011-12-20', 550000.0, '2011-11-05 05:09:05', 9425.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Memory Palace: An Exhibition (Canceled)', 'Mixed Media', 'Art', 'GBP', '2015-03-29', 500.0, '2015-02-26 15:42:11', 0.0, 'canceled']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "[\"SPARKED: Exclusive Creator/Collectors' DVD\", 'Shorts', 'Film & Video', 'USD', '2014-12-09', 3800.0, '2014-11-11 06:04:51', 7604.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Vassar Senior Art Exhibition 2014', 'Art', 'Art', 'USD', '2014-05-17', 900.0, '2014-03-28 03:35:41', 1132.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Launch \"Best. Selling. Novel. best stuff I know before I go', 'Print', 'Journalism', 'USD', '2015-04-27', 12000.0, '2015-03-31 02:49:56', 2835.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['ASSAULTED', 'Documentary', 'Film & Video', 'USD', '2012-10-05', 65000.0, '2012-09-05 06:41:54', 71140.86, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Frequency Fridays 2012-2013 Season', 'Electronic Music', 'Music', 'USD', '2013-03-02', 4000.0, '2013-02-05 18:20:30', 4015.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Innocent Sin', 'Shorts', 'Film & Video', 'USD', '2012-07-16', 42000.0, '2012-05-26 03:51:21', 71.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "[\"Japan - 'A Foreign Place' - The Biography\", 'Nonfiction', 'Publishing', 'GBP', '2013-07-21', 5000.0, '2013-06-11 10:48:07', 6106.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['YEAR OF THE GOAT Volume 1 TPB Graphic Novel', 'Graphic Novels', 'Comics', 'USD', '2016-09-27', 750.0, '2016-08-28 18:57:05', 1760.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Varsity Punks', 'Comedy', 'Film & Video', 'USD', '2016-04-14', 12000.0, '2016-03-19 13:05:10', 14052.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Food Truck (Canceled)', 'Food Trucks', 'Food', 'USD', '2014-08-16', 20000.0, '2014-07-17 14:46:58', 0.0, 'canceled']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "[\"Larry Karol's New Album - 10 years in the making!\", 'Faith', 'Music', 'USD', '2014-08-05', 8000.0, '2014-07-06 05:30:34', 8240.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Save our heritage', 'Public Art', 'Art', 'EUR', '2017-01-21', 20000.0, '2016-11-22 07:21:12', 5012.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['The Road Back', 'Comedy', 'Film & Video', 'GBP', '2015-11-12', 100000.0, '2015-10-13 22:06:29', 3184.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['INTERNATIONAL COFFE SHOP', 'Spaces', 'Food', 'USD', '2016-10-30', 10000.0, '2016-09-30 06:32:03', 1.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['COLORSTORE | \"Afire\" Vinyl/CD/Download', 'Indie Rock', 'Music', 'USD', '2011-07-05', 2000.0, '2011-06-05 04:34:07', 2030.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Chronicles of the Nephilim on AudioBook', 'Fiction', 'Publishing', 'USD', '2013-05-26', 6500.0, '2013-04-26 02:37:45', 2365.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Mass Therapy', 'Public Art', 'Art', 'USD', '2015-02-01', 1500.0, '2014-12-19 06:14:40', 31.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Chopin melodies at Weill Recital Hall at CARNEGIE HALL', 'Classical Music', 'Music', 'CAD', '2014-04-30', 10000.0, '2014-03-31 22:19:26', 11164.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Tin Man Production presents: Heartless Entertainment', 'Music', 'Music', 'USD', '2016-03-13', 15000.0, '2016-01-13 03:03:30', 1.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['EZ PRINTS', 'Technology', 'Technology', 'USD', '2014-12-09', 3000.0, '2014-11-18 16:27:55', 20.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['100% SUCCESS SHIRTS', 'Fashion', 'Fashion', 'USD', '2011-03-17', 5000.0, '2011-03-02 01:42:38', 0.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Soul Exposed', 'Music', 'Music', 'USD', '2012-11-07', 5000.0, '2012-10-08 06:03:19', 5065.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['After The Dark: The Castaway King Chronicles', 'Fiction', 'Publishing', 'USD', '2017-09-17', 27000.0, '2017-07-19 03:52:50', 0.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Pink Skies', 'Hip-Hop', 'Music', 'USD', '2015-03-03', 3500.0, '2015-02-01 16:04:17', 1.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Edenea Apparel', 'Apparel', 'Fashion', 'GBP', '2016-11-04', 800.0, '2016-09-20 02:08:20', 834.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['X Country USA', 'Places', 'Photography', 'USD', '2017-05-19', 500.0, '2017-04-19 22:42:03', 25.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Travel funding for the BAG project.', 'Photography', 'Photography', 'USD', '2010-04-01', 800.0, '2010-01-25 19:38:24', 25.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Return of the Three King Saguaros', 'Public Art', 'Art', 'USD', '2015-10-10', 5500.0, '2015-09-10 21:41:19', 0.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Cobbling is not a dead trade', 'Crafts', 'Crafts', 'USD', '2016-11-09', 10000.0, '2016-10-10 22:49:25', 65.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Rana Series - Camera and Day Bags', 'Product Design', 'Design', 'USD', '2017-10-24', 12500.0, '2017-10-03 14:59:11', 15887.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['El viaje del alma', 'Mixed Media', 'Art', 'EUR', '2016-10-17', 3500.0, '2016-09-22 23:47:57', 42.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Zintrise Altovise Birmingham, UK International Fashion Week', 'Couture', 'Fashion', 'USD', '2015-08-20', 3000.0, '2015-07-26 23:36:15', 0.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['dragon boy', 'Comic Books', 'Comics', 'SEK', '2016-01-11', 60000.0, '2015-12-07 20:07:57', 5.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['\"Fangs and Fur\" exhibition in Berlin!', 'Sculpture', 'Art', 'USD', '2010-08-04', 875.0, '2010-06-24 21:49:57', 895.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "[\"Beware, the Snallygaster - a children's chapter book\", \"Children's Books\", 'Publishing', 'USD', '2011-08-14', 1200.0, '2011-07-15 00:40:15', 1200.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['DREAM KILLERS LP FUND', 'Hip-Hop', 'Music', 'USD', '2012-04-19', 1000.0, '2012-02-19 07:22:13', 1326.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Unbound: A Reader', 'Art Books', 'Publishing', 'USD', '2015-12-06', 2280.0, '2015-11-15 00:43:37', 2791.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Onist Food', 'Vegan', 'Food', 'GBP', '2015-10-29', 65000.0, '2015-09-29 09:27:27', 5304.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['MP3 Audio Seperation', 'Sound', 'Technology', 'USD', '2015-05-01', 6000.0, '2015-03-02 08:08:41', 1.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Bare Your Fangs', 'Tabletop Games', 'Games', 'USD', '2012-01-30', 10500.0, '2011-12-04 19:14:11', 3122.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['The Lucien Dante Video and Tour (Canceled)', 'Music', 'Music', 'USD', '2014-08-09', 15000.0, '2014-07-10 18:02:35', 672.0, 'canceled']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['STORIES BEYOND POLITICAL BOUNDARIES', 'Shorts', 'Film & Video', 'USD', '2016-01-12', 8500.0, '2015-11-21 23:52:05', 745.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['The Pursuit of Happiness', 'Tabletop Games', 'Games', 'USD', '2016-02-11', 15000.0, '2016-01-11 16:00:09', 110912.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Meat Box: an underground horror film subscription box', 'Horror', 'Film & Video', 'USD', '2015-04-04', 56000.0, '2015-02-03 06:07:48', 801.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Staging my play \"ARMSTRONG\\'S KID\" Off-Broadway!', 'Theater', 'Theater', 'USD', '2011-07-12', 10000.0, '2011-05-13 20:53:16', 2436.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['SNAKE OIL - Elixir.... The Best Party Game in the World!', 'Tabletop Games', 'Games', 'USD', '2014-12-07', 10000.0, '2014-11-07 16:53:11', 12943.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Outdoor Tasting Area for your Local Craft Brewery!', 'Food', 'Food', 'USD', '2012-11-07', 11400.0, '2012-10-08 16:54:47', 5186.86, 'failed']\n",
+ "You need to answer question number 2\n"
+ ]
+ }
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "gkVN8OnxYCy5"
+ },
+ "source": [
+ "**Question 1:** On average which project category received the highest number of backers? (15 pt)"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "metadata": {
+ "id": "vkhb156oYCy6"
+ },
+ "source": [
+ ""
+ ],
+ "execution_count": null,
+ "outputs": []
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "LTk5XnNGYCy7"
+ },
+ "source": [
+ "**Question 2:** On average which project category received the highest pledged USD? (15 pt)"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "metadata": {
+ "id": "DfiXdIneYCy8",
+ "colab": {
+ "base_uri": "https://localhost:8080/"
+ },
+ "outputId": "0ab51c30-52df-401c-ea58-f5dc1e88a33c"
+ },
+ "source": [
+ "res = list(select((p.category, avg(p.pledged)) for p in Project))\n",
+ "print(res[0])"
+ ],
+ "execution_count": 24,
+ "outputs": [
+ {
+ "output_type": "stream",
+ "name": "stdout",
+ "text": [
+ "SELECT \"p\".\"category\", AVG(\"p\".\"pledged\")\n",
+ "FROM \"Project\" \"p\"\n",
+ "GROUP BY \"p\".\"category\"\n",
"\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Drumba Drum', 'Design', 'Design', 'USD', '2017-10-22', 50000.0, '2017-09-22 03:27:48', 0.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Portal to Alaska', 'Web', 'Journalism', 'USD', '2015-04-26', 18690.0, '2015-03-27 09:11:28', 0.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Jamming to Chill Old Harmonies Eternally', 'Pop', 'Music', 'USD', '2014-02-03', 100.0, '2014-01-24 00:23:13', 291.78, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['HELP HEAVYWEIGHTS RECORD THEIR NEW ALBUM!', 'Rock', 'Music', 'USD', '2014-04-06', 2000.0, '2014-03-07 14:53:37', 2099.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['FitGirl Clothing', 'Fashion', 'Fashion', 'USD', '2014-09-18', 15000.0, '2014-08-04 19:54:42', 5643.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['\"Fujoshi Trapped in a Seme\\'s Perfect Body\" BL / Yaoi Manga !', 'Webcomics', 'Comics', 'USD', '2017-07-17', 2000.0, '2017-07-10 21:00:42', 4693.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Invert or Die', 'Games', 'Games', 'EUR', '2016-02-20', 500.0, '2016-01-11 17:01:26', 11.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['REVOLVE: the versatile, portable and affordable camera dolly', 'Product Design', 'Design', 'USD', '2012-05-06', 7500.0, '2012-03-22 20:20:30', 71664.62, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['BOOK: VIOLENT COLLEAGUE GOT ACQUITTED', 'Publishing', 'Publishing', 'NOK', '2017-02-19', 50000.0, '2017-01-20 23:30:59', 50.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Princess Lucinda Short film.', 'Shorts', 'Film & Video', 'USD', '2012-03-18', 10000.0, '2012-02-17 01:35:11', 384.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Orion Rebellion', 'Music', 'Music', 'USD', '2015-07-11', 500.0, '2015-05-12 03:09:33', 501.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['MMORPG, Quest: Remnants of Chaos', 'Video Games', 'Games', 'USD', '2012-07-13', 50000.0, '2012-06-13 08:21:24', 74.37, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Documentary about Shelter Animals (Canceled)', 'Documentary', 'Film & Video', 'USD', '2013-12-16', 125000.0, '2013-11-13 14:01:14', 3440.0, 'canceled']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Play center for Mexican children', 'Games', 'Games', 'EUR', '2017-04-06', 15000.0, '2017-03-03 20:21:54', 110.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Arqball Spin: 3D For Everyone', 'Product Design', 'Design', 'USD', '2012-05-18', 40000.0, '2012-04-18 17:07:41', 42748.26, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['PoiseCam - Ergonomic iPhone 4 & 4S Camera Grip', 'Product Design', 'Design', 'USD', '2012-03-22', 25000.0, '2012-02-21 09:32:06', 5405.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Evan Miller - Debut EP!', 'Pop', 'Music', 'USD', '2014-06-17', 1500.0, '2014-05-04 22:04:11', 545.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['BANDITO BABIES - Mexi-pop Teething Toys for Babies', 'Product Design', 'Design', 'NZD', '2016-03-29', 2500.0, '2016-02-26 00:31:21', 2775.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Glenn goes to the USA to watch TV!', 'Journalism', 'Journalism', 'CAD', '2014-08-04', 1350.0, '2014-07-22 01:02:27', 0.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Every Child Matters', 'Theater', 'Theater', 'GBP', '2015-12-08', 15000.0, '2015-11-11 20:52:52', 15079.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['VALANI Watch - When time means everything', 'Product Design', 'Design', 'EUR', '2017-01-27', 34000.0, '2016-12-16 14:43:45', 686.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['The Network Project (Canceled)', 'Technology', 'Technology', 'GBP', '2015-05-29', 500.0, '2015-04-29 17:19:38', 120.0, 'canceled']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Community Orange Magazine', 'Periodicals', 'Publishing', 'USD', '2015-05-03', 8000.0, '2015-04-01 14:55:16', 696.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Create art with The Conservatory', 'Shorts', 'Film & Video', 'USD', '2012-08-18', 2500.0, '2012-07-19 22:15:12', 2707.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['TaySlo Productions Games and Design Startup', 'Software', 'Technology', 'USD', '2015-04-01', 125000.0, '2015-02-08 02:47:29', 0.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Rain & Leaves - Buttons EP', 'Indie Rock', 'Music', 'USD', '2015-08-27', 1100.0, '2015-07-28 21:55:49', 1228.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Seven Kingdoms: The Princess Problem', 'Video Games', 'Games', 'USD', '2015-09-05', 3000.0, '2015-08-06 00:01:31', 25448.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['The Family Show', 'Experimental', 'Film & Video', 'CAD', '2016-05-05', 250000.0, '2016-04-05 01:32:40', 3856.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Fat Mask – A Party Puzzle Brawler (Canceled)', 'Video Games', 'Games', 'CAD', '2015-11-05', 20000.0, '2015-10-06 20:02:32', 4792.01, 'canceled']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Black Passenger Yellow Cabs:Of Exile & Excess In Japan(Vook)', 'Shorts', 'Film & Video', 'USD', '2011-04-01', 5000.0, '2011-01-30 07:59:54', 0.0, 'canceled']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Project Cross-Canada', 'Documentary', 'Film & Video', 'CAD', '2016-12-04', 25000.0, '2016-10-05 09:50:55', 0.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['The Magic of Friendship - Directed by Daniel Burke', 'Comedy', 'Film & Video', 'USD', '2015-04-07', 4500.0, '2015-03-09 20:49:26', 5627.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['The Warlords Comic Book Miniseries', 'Comic Books', 'Comics', 'GBP', '2017-12-01', 1500.0, '2017-11-01 19:11:15', 1667.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['\"Yoga Tree\" Goes International: The Yoga Show, LONDON', 'Painting', 'Art', 'USD', '2012-08-09', 5000.0, '2012-07-10 01:05:21', 5129.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['LARAC Presents Wild Adriatic & Swear and Shake at the Wood', 'Music', 'Music', 'USD', '2014-06-01', 3000.0, '2014-05-03 03:58:41', 180.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Peace', 'Music', 'Music', 'USD', '2014-10-24', 2000.0, '2014-10-14 17:35:05', 2000.0, 'undefined']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['STAY - a short film set across 4 seasons.', 'Shorts', 'Film & Video', 'GBP', '2015-03-01', 2000.0, '2015-01-30 10:11:32', 2602.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['The Good, the Bad, and the Undead', 'Fiction', 'Publishing', 'USD', '2015-08-31', 3700.0, '2015-07-31 23:02:57', 9211.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['I Will Help You Get Your Book Done Fast and Low Cost', 'Publishing', 'Publishing', 'USD', '2016-11-22', 295.0, '2016-10-23 21:07:33', 0.0, 'suspended']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Send Into the Flames Into the Sky', 'Fiction', 'Publishing', 'USD', '2017-04-06', 2000.0, '2017-03-08 04:56:36', 101.0, 'canceled']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['NEW Alternative Psychedelic Rock Debut EP! Out May/June!', 'Indie Rock', 'Music', 'USD', '2015-05-02', 1500.0, '2015-04-09 05:50:00', 0.0, 'canceled']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Patented Aquarium Tank House for Small Glass Tanks', 'Product Design', 'Design', 'USD', '2017-07-15', 6000.0, '2017-06-15 18:53:24', 55.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Fall', 'Video Games', 'Games', 'USD', '2014-06-28', 441330.0, '2014-05-19 17:31:20', 11900.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Sarah Gerritsen & The Shadow Catchers Full Length Album', 'Music', 'Music', 'USD', '2014-11-26', 7000.0, '2014-11-03 07:29:37', 8036.0, 'undefined']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Sangreal Board Game (Canceled)', 'Tabletop Games', 'Games', 'NZD', '2014-08-31', 225000.0, '2014-07-31 04:57:31', 0.0, 'canceled']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Falling Explorer Pin', 'Art', 'Art', 'GBP', '2017-10-31', 250.0, '2017-10-01 15:43:09', 311.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['One Lonely Visitor - \"Ascension:\" a jazz-metal epic', 'Metal', 'Music', 'USD', '2015-12-07', 50.0, '2015-11-17 17:52:02', 20.01, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['#NewTexas', 'Hip-Hop', 'Music', 'USD', '2015-03-21', 3000.0, '2015-02-19 01:13:35', 1.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['3Sixty7', 'Documentary', 'Film & Video', 'GBP', '2015-12-05', 23127.0, '2015-11-05 18:04:09', 0.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Risk of Rain', 'Video Games', 'Games', 'USD', '2013-05-09', 7000.0, '2013-04-09 05:30:41', 30480.5, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Communication Through Artifact Creation', 'Theater', 'Theater', 'USD', '2014-04-02', 700.0, '2014-03-03 23:23:17', 710.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['THE OTHER GRACE Play Development Project', 'Theater', 'Theater', 'USD', '2011-07-25', 1200.0, '2011-06-29 02:44:12', 1528.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Dahlia: The Graphic Novel', 'Comics', 'Comics', 'USD', '2014-06-01', 26500.0, '2014-05-01 15:10:43', 6096.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Help Me Heal The World A Little', 'Faith', 'Music', 'USD', '2016-09-18', 5000.0, '2016-08-15 02:54:02', 0.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Tanpopo: Hardcover Edition', 'Comics', 'Comics', 'USD', '2011-11-03', 10000.0, '2011-10-03 20:38:46', 15096.14, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['SUBTLE ANGELS: RYLIE VOL.5-THE FINAL CHAPTER- fine art nudes', 'Fine Art', 'Photography', 'USD', '2016-10-17', 199.0, '2016-10-12 23:52:51', 776.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Be apart of the infection.', 'Horror', 'Film & Video', 'USD', '2014-06-09', 5000.0, '2014-05-10 03:30:20', 10.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['KANALOA SWIMWEAR - the foundation collection', 'Apparel', 'Fashion', 'AUD', '2015-09-18', 15000.0, '2015-08-19 01:45:13', 430.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['ZOMBIE WAFFEN The Series (Canceled)', 'Film & Video', 'Film & Video', 'USD', '2011-12-16', 185000.0, '2011-10-22 20:35:58', 0.0, 'canceled']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Into the Hive of Saarlathesh', 'Fiction', 'Publishing', 'USD', '2013-08-31', 2000.0, '2013-08-01 17:52:01', 2320.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "[\"Heaven's Gate Brewery\", 'Drinks', 'Food', 'USD', '2016-02-18', 10000.0, '2016-01-19 08:54:29', 1146.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "[\"Say Hello to The World's Best Case for Parents\", 'Product Design', 'Design', 'USD', '2016-03-04', 12500.0, '2016-01-27 16:50:53', 12537.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['MONT-DE-CASTEL', 'Video Games', 'Games', 'GBP', '2014-04-20', 35000.0, '2014-03-11 22:47:09', 2048.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Melodic Soul Unplugged EP', 'Music', 'Music', 'USD', '2015-08-18', 5000.0, '2015-06-20 01:49:30', 25.0, 'undefined']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['The Sahara Slug-Out', 'Documentary', 'Film & Video', 'USD', '2014-10-09', 1100.0, '2014-09-09 23:13:33', 172.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Synk: The New Way To Stream Movies & TV Shows', 'Apps', 'Technology', 'USD', '2015-11-15', 20000.0, '2015-10-16 17:44:15', 107.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Dresean First Album/Mixtape', 'Hip-Hop', 'Music', 'USD', '2015-10-28', 20000.0, '2015-09-28 22:14:50', 0.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Ardanus: Elemental Wars - Online Multiplayer Card Game', 'Video Games', 'Games', 'CAD', '2015-01-14', 30000.0, '2014-11-15 21:14:20', 91.0, 'canceled']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Two Lavender Dresses--she is a Buddhist and he is an atheist', 'Fiction', 'Publishing', 'USD', '2015-02-15', 11000.0, '2015-01-16 21:34:26', 10.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Battle of Muscles', 'Playing Cards', 'Games', 'USD', '2016-09-23', 2500.0, '2016-08-24 05:05:54', 2990.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['The Most Versatile Boat in the World', 'Product Design', 'Design', 'USD', '2015-12-20', 50000.0, '2015-11-30 16:18:53', 193004.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Haiku for Change', 'Poetry', 'Publishing', 'USD', '2014-09-06', 20000.0, '2014-08-06 18:53:42', 41.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['SAILCARGO INC.', 'Architecture', 'Design', 'CAD', '2016-11-01', 30000.0, '2016-09-22 15:21:35', 30821.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Eyecatcher: The Smart, Large-Display, Super-Charged Wearable', 'Wearables', 'Technology', 'USD', '2015-11-19', 75000.0, '2015-10-05 18:18:23', 263265.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Maxine Gadd Imaginarium - Fantasy Art Book', 'Illustration', 'Art', 'AUD', '2016-06-12', 62000.0, '2016-05-08 16:58:31', 8448.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Loo Shelf - The Bathroom Shelf For Your Phone!', 'Technology', 'Technology', 'USD', '2017-07-27', 30000.0, '2017-06-27 16:15:55', 931.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['BEECH Copenhagen - Childrens Fashion Label', 'Childrenswear', 'Fashion', 'AUD', '2015-04-02', 17000.0, '2015-03-03 22:52:39', 1090.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Sara Lee Who? Help Baby Cakes become a household name.', 'Food', 'Food', 'USD', '2015-02-17', 35000.0, '2015-01-18 16:38:50', 37138.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['The quantum mind/ A new understanding of reality', 'Nonfiction', 'Publishing', 'USD', '2011-05-22', 12000.0, '2011-04-22 17:14:08', 20.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['GRAND POOBOX - THE KITTY LITTER BOX WITH PURRR-PUSS', 'Product Design', 'Design', 'USD', '2016-02-28', 120000.0, '2016-01-14 06:13:28', 4455.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Gaze of the Beholder', 'Documentary', 'Film & Video', 'USD', '2011-08-13', 10000.0, '2011-07-14 07:35:29', 1700.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Help The Ember Days Make A New Worship Album!', 'Music', 'Music', 'USD', '2010-05-30', 3000.0, '2010-03-02 17:47:45', 3031.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Löwin Lingerie', 'Accessories', 'Fashion', 'EUR', '2014-08-20', 30000.0, '2014-07-21 20:26:11', 120.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Defiance Brewery', 'Drinks', 'Food', 'USD', '2015-04-11', 65000.0, '2015-02-25 21:34:08', 5336.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['The Black Feathers Debut EP - Strangers We Meet', 'Country & Folk', 'Music', 'GBP', '2013-11-05', 1000.0, '2013-10-15 12:01:07', 2511.99, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['TieLark: A Handwoven Baby Wrap Startup', 'Weaving', 'Crafts', 'CAD', '2014-10-02', 1500.0, '2014-09-18 23:37:07', 2060.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "[\"Be a part of Officer Roseland's new rock album !\", 'Rock', 'Music', 'USD', '2015-09-17', 2000.0, '2015-08-18 04:05:15', 131.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Death Waits In The Dark', 'Nonfiction', 'Publishing', 'USD', '2017-12-22', 15000.0, '2017-11-07 20:56:57', 950.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "[\"Devil's Bargain Production Pitch\", 'Shorts', 'Film & Video', 'USD', '2013-08-28', 66600.0, '2013-07-14 00:06:18', 0.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Sasha was here', 'Drama', 'Film & Video', 'USD', '2017-07-27', 22500.0, '2017-06-27 22:51:31', 1485.0, 'canceled']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['GENTLEMAN SLIM WALLET - DESIGN YOUR DAILY LIFE!', 'Product Design', 'Design', 'EUR', '2015-12-14', 2000.0, '2015-10-15 17:34:46', 5741.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "[\"The Daydreamers' Fading Light summer tour\", 'Pop', 'Music', 'USD', '2011-06-24', 6000.0, '2011-05-10 01:07:50', 0.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Tall is Beautiful-Introducing Alyssa Vermell Apparel', 'Apparel', 'Fashion', 'USD', '2015-05-14', 10000.0, '2015-04-14 15:00:44', 10969.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Letters to Lost Loves // LP & Short Stories', 'Music', 'Music', 'USD', '2014-05-22', 10000.0, '2014-04-22 18:57:18', 13655.77, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Retro Lindo: all-in-one console', 'Hardware', 'Technology', 'EUR', '2015-04-17', 10000.0, '2015-03-18 18:36:37', 12342.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['broken bow ensemble performs \"murmur\"', 'Classical Music', 'Music', 'USD', '2012-09-28', 400.0, '2012-09-18 18:00:23', 624.33, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['The start of Tackle Life', 'Technology', 'Technology', 'AUD', '2015-02-19', 1500.0, '2015-01-20 22:25:01', 6.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Duolingo Onlinesprachkurs Arabisch->Deutsch Bountypot', 'Academic', 'Publishing', 'EUR', '2015-10-11', 10000.0, '2015-09-11 09:38:18', 216.0, 'suspended']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['White Out - Playable Art for iPhone', 'Video Games', 'Games', 'USD', '2012-12-01', 500.0, '2012-11-16 01:32:19', 525.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Man Becomes Machine in ELECTRIC', 'Film & Video', 'Film & Video', 'USD', '2014-11-06', 2000.0, '2014-10-17 05:17:16', 328.0, 'undefined']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Beyond Rapture: A series based off Dayz', 'Webseries', 'Film & Video', 'USD', '2015-04-11', 500.0, '2015-03-12 11:17:48', 0.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['A Hard Place', 'Narrative Film', 'Film & Video', 'USD', '2013-10-18', 350000.0, '2013-08-19 23:37:22', 1203.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Grilled Cheese Sammich', 'Art', 'Art', 'USD', '2014-08-11', 10.0, '2014-07-12 18:44:21', 0.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['MOTI | Your Smart Companion for Better Habits', 'Product Design', 'Design', 'USD', '2016-10-19', 50000.0, '2016-09-13 04:25:34', 110103.0, 'canceled']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Tex Murphy - Project Fedora', 'Video Games', 'Games', 'USD', '2012-06-16', 450000.0, '2012-05-15 07:51:48', 598104.67, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Blimpus, An Inflatable Character Canvas', 'Design', 'Design', 'USD', '2011-04-01', 7500.0, '2011-02-28 02:22:47', 11331.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['New Year Festival Of Praise', 'Faith', 'Music', 'GBP', '2016-01-07', 50000.0, '2015-12-09 19:50:42', 365.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['The Single Reality - Dating & Matchmaking for Real People', 'Apps', 'Technology', 'USD', '2014-08-08', 40000.0, '2014-07-09 03:09:46', 76.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['The Best Kickstarter Video Ever', 'Comedy', 'Film & Video', 'USD', '2014-08-08', 73000000.0, '2014-07-09 21:40:31', 130.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['POSSUM JENKINS is recording their latest studio album!', 'Country & Folk', 'Music', 'USD', '2011-06-02', 5500.0, '2011-04-18 07:06:10', 8000.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['H.P. Lovecraft\\'s \"The Terrible Old Man\" Short Film', 'Horror', 'Film & Video', 'USD', '2014-08-14', 5000.0, '2014-07-15 07:07:56', 5142.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['BabyGlowz', 'Product Design', 'Design', 'USD', '2014-09-03', 5000.0, '2014-08-04 21:23:21', 0.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['PROJECT MOVED (to lower funding goal) !!! (Canceled)', 'Art Books', 'Publishing', 'USD', '2013-02-01', 7000.0, '2012-12-06 20:58:47', 480.0, 'canceled']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Homeless Heroes (Canceled)', 'Documentary', 'Film & Video', 'USD', '2014-09-14', 25000.0, '2014-07-16 03:18:19', 1.0, 'canceled']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Failing Sky', 'Comics', 'Comics', 'USD', '2013-07-15', 7000.0, '2013-06-17 07:12:28', 8815.11, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "[\"Devil's Panties Pretty Princess Plushie!\", 'Webcomics', 'Comics', 'USD', '2014-11-20', 15000.0, '2014-10-20 22:51:28', 18408.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['World to Come -- a feature film', 'Narrative Film', 'Film & Video', 'CAD', '2015-08-09', 5000.0, '2015-07-10 08:11:20', 965.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['HELP! POMOC! Hear No Evil (experimental short)', 'Art', 'Art', 'USD', '2011-01-10', 600.0, '2010-11-17 16:37:15', 603.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Gaia is ready to make our new album and needs a little love!', 'Country & Folk', 'Music', 'USD', '2014-03-27', 15000.0, '2014-02-26 00:13:25', 5872.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['DevilBase Music', 'Music Videos', 'Film & Video', 'GBP', '2014-07-18', 2480.0, '2014-05-19 23:21:01', 0.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Aethro Prelude - An interactive MMORPG', 'Video Games', 'Games', 'USD', '2011-12-21', 6000.0, '2011-11-21 14:25:25', 50.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Nationwide Wireless \"The Hotspot\"', 'Drinks', 'Food', 'USD', '2014-11-16', 6000.0, '2014-10-17 17:42:00', 6255.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Aucasi - Affordable real home automation', 'Technology', 'Technology', 'EUR', '2016-10-24', 164342.0, '2016-09-24 09:00:20', 17004.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['INTERNATIONAL COVEN OF DANGEROUS VIOLINISTRY VOLUME II', 'Classical Music', 'Music', 'USD', '2015-01-18', 1900.0, '2014-12-11 12:25:51', 2280.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "[\"Little Red's BBQ - This Ain't Your Grandma's BBQ!\", 'Small Batch', 'Food', 'USD', '2014-11-19', 5000.0, '2014-10-20 17:58:21', 2167.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['die klangkojoten', 'Apps', 'Technology', 'EUR', '2016-02-25', 5000.0, '2016-01-26 18:49:33', 1.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['My Summer as a Goth-Finishing Funds #2', 'Film & Video', 'Film & Video', 'USD', '2016-09-18', 15000.0, '2016-08-19 22:12:45', 18669.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['SAFE-SAW, Do the work without getting hurt!', 'Fabrication Tools', 'Technology', 'USD', '2015-12-08', 10000.0, '2015-11-24 01:10:54', 0.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "[\"Mosaic Lizard Theater's Second Season!\", 'Theater', 'Theater', 'USD', '2012-02-05', 10000.0, '2012-01-06 23:38:07', 400.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Emptiness and Presence: An Exhibition of Photography', 'Photography', 'Photography', 'USD', '2012-09-27', 7500.0, '2012-08-28 03:44:46', 7672.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Jimmy Real is recording a DEBUT EP!!', 'Pop', 'Music', 'USD', '2013-11-29', 9000.0, '2013-10-25 00:29:48', 9470.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Gavin Benjamin — The Artist Project New York', 'Painting', 'Art', 'USD', '2011-02-24', 3800.0, '2011-02-10 14:31:27', 3840.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Premium Wood Phone Cases - for iPhone and Samsung', 'Accessories', 'Fashion', 'CAD', '2015-08-28', 5500.0, '2015-07-21 12:04:23', 10849.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Sound The ALARM!', 'Film & Video', 'Film & Video', 'USD', '2013-12-06', 30000.0, '2013-11-06 18:17:03', 421.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['The Rebuilding Memories Project', 'Family', 'Film & Video', 'USD', '2014-08-30', 175000.0, '2014-07-31 15:52:48', 50.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Revenge of the Blank', 'Tabletop Games', 'Games', 'USD', '2017-06-21', 1977.0, '2017-05-18 11:58:32', 979.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['My Fishing Spot App', 'Apps', 'Technology', 'AUD', '2015-01-11', 50000.0, '2014-11-12 02:24:14', 5.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['MyTyme app', 'Apps', 'Technology', 'USD', '2016-08-30', 1500.0, '2016-07-01 22:35:29', 5.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Entertainment Rental Store', 'Film & Video', 'Film & Video', 'USD', '2015-02-04', 18000.0, '2014-12-06 21:47:56', 8.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['TROVE - The Tabletop Gaming Subscription Box', 'Tabletop Games', 'Games', 'GBP', '2016-08-30', 1250.0, '2016-07-31 08:00:02', 553.0, 'canceled']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "[\"King of Jazz: Paul Whiteman's Technicolor Revue\", 'Publishing', 'Publishing', 'USD', '2016-05-23', 15000.0, '2016-03-28 14:33:46', 23323.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['emberghost: Not Long For This Earth, pt. I', 'Indie Rock', 'Music', 'USD', '2012-06-22', 9999.0, '2012-05-23 06:27:56', 12555.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Heart Center: The Yoga Musical!', 'Musical', 'Theater', 'USD', '2016-07-31', 350.0, '2016-07-16 03:37:53', 360.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "[\"Free Shakespeare in the Park in Somerville's Davis Square!\", 'Theater', 'Theater', 'USD', '2011-04-16', 5500.0, '2011-02-14 19:11:20', 5762.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Average Joes Baja 1000... The Underdogs', 'Documentary', 'Film & Video', 'USD', '2012-05-14', 50000.0, '2012-03-15 04:22:13', 441.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Exis: Founders', 'Games', 'Games', 'USD', '2012-07-06', 20000.0, '2012-06-06 05:08:57', 2556.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Magical Music For A Positive Change!!!', 'Music', 'Music', 'USD', '2016-04-28', 357.0, '2016-03-26 20:27:23', 1.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['A List Dynasty: The Turn Up Project', 'Fashion', 'Fashion', 'USD', '2013-11-06', 5000.0, '2013-10-07 23:22:59', 85.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Wayward America - Exploring, Uncovering, Reviving the USA', 'Webseries', 'Film & Video', 'USD', '2017-12-25', 5000.0, '2017-11-25 20:08:28', 91.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Cornelius and Willow', 'Drama', 'Film & Video', 'USD', '2015-08-06', 3000.0, '2015-07-07 00:01:10', 1300.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "[\"King Charles' Coast - Whose beach is it anyway?\", 'Film & Video', 'Film & Video', 'USD', '2011-04-18', 12500.0, '2011-03-03 20:20:59', 2860.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "[\"Gallimaufry: A Collection of the Amazing & Peculiar C2E2 '13\", 'Comics', 'Comics', 'USD', '2013-03-04', 1000.0, '2013-02-12 22:55:47', 331.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['The Badger: Waterproof USB Solar Charger', 'Gadgets', 'Technology', 'USD', '2015-06-04', 20000.0, '2015-05-05 17:19:16', 119933.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['My Music Startup (Canceled)', 'Pop', 'Music', 'USD', '2012-10-21', 7000.0, '2012-09-11 00:22:58', 402.0, 'canceled']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Moth Enamel Pin Collection', 'Mixed Media', 'Art', 'USD', '2017-08-11', 694.0, '2017-07-11 22:25:13', 2076.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['David J (Bauhaus) New Album \"Not Long For This World\"', 'Music', 'Music', 'USD', '2011-01-15', 5000.0, '2010-12-01 17:44:00', 7425.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Father of Lights Album', 'Faith', 'Music', 'USD', '2017-03-20', 16000.0, '2017-01-27 20:13:10', 16125.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "[\"I'm a Little Monkey Children's Picture Book\", \"Children's Books\", 'Publishing', 'GBP', '2017-10-27', 200.0, '2017-09-16 15:18:42', 1286.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Innovation Deluxe', 'Tabletop Games', 'Games', 'USD', '2015-10-20', 10000.0, '2015-09-30 20:00:58', 91769.91, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['The Greatest Escape', 'Animation', 'Film & Video', 'USD', '2014-07-10', 50000.0, '2014-05-26 23:59:13', 0.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['\"Win When?\" The second level from My Parents Favorite Music', 'Hip-Hop', 'Music', 'USD', '2012-07-07', 2500.0, '2012-05-08 17:54:23', 2867.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Archigrams: Prints of Modern Architecture Icons that Inspire', 'Architecture', 'Design', 'USD', '2014-04-23', 3000.0, '2014-04-10 20:02:26', 11258.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['TheHustleGameBookII', 'Nonfiction', 'Publishing', 'USD', '2014-01-18', 3000.0, '2013-11-21 20:33:30', 11.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['PurposeMatch', 'Software', 'Technology', 'USD', '2014-11-06', 25000.0, '2014-10-07 15:00:26', 8572.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['\"Once Upon a Masterclass\"', 'Theater', 'Theater', 'USD', '2012-11-29', 3300.0, '2012-10-09 15:03:21', 3730.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Kode Orange - New TV Series', 'Television', 'Film & Video', 'USD', '2014-07-17', 10000.0, '2014-06-17 18:50:46', 11621.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Live Theatrical Production of ANGER BOX', 'Theater', 'Theater', 'USD', '2011-04-26', 800.0, '2011-04-04 18:07:43', 0.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Help me get my own business up and running', 'Art', 'Art', 'CAD', '2015-12-11', 10500.0, '2015-11-18 23:03:45', 0.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Advanced Digital Cinema - Short Films', 'Film & Video', 'Film & Video', 'NZD', '2016-05-18', 300.0, '2016-04-28 03:58:46', 300.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['CMYK (Canceled)', 'Digital Art', 'Art', 'USD', '2015-01-04', 1500.0, '2014-11-05 21:33:05', 325.0, 'canceled']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['How To Kill A Cat', 'Video Games', 'Games', 'USD', '2015-12-02', 10000.0, '2015-11-02 04:28:15', 49.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['YOU MAKE ME FEEL MIGHTY REAL: A SYLVESTER CONCERT OFF BWAY', 'Theater', 'Theater', 'USD', '2014-01-16', 17000.0, '2013-11-18 21:28:55', 21060.01, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['The Red Pines 2012 High School Yearbook', 'Painting', 'Art', 'USD', '2011-07-26', 3200.0, '2011-07-15 08:37:38', 4424.53, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Hoot: Columbia University & Morningside Heights Fashion Magazine Fall 2010 Issue', 'Periodicals', 'Publishing', 'USD', '2010-09-22', 2000.0, '2010-08-21 20:44:57', 2065.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['SKATE PHARMACY - HELP US EXPAND OUR RANGE!', 'Fashion', 'Fashion', 'GBP', '2014-12-11', 5000.0, '2014-11-11 16:21:20', 0.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['\"What is essential is \\'visible\\' to the eye\" First solo show', 'Painting', 'Art', 'EUR', '2015-07-22', 2000.0, '2015-06-26 16:48:54', 0.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['I see your potato salad, and raise you BACON!', 'Bacon', 'Food', 'USD', '2014-08-08', 7.0, '2014-07-09 14:48:26', 146.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Cyber Cafe Franchise', 'Web', 'Technology', 'USD', '2015-05-13', 150000.0, '2015-03-14 03:42:40', 0.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['doodleme t-shirts. Taking t-shirts to amazing.', 'Fashion', 'Fashion', 'USD', '2012-10-31', 21000.0, '2012-10-01 08:13:48', 2177.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "[\"San Diego's Favorite Sauce is Coming Your Way!\", 'Food', 'Food', 'USD', '2017-10-01', 20000.0, '2017-08-22 16:42:00', 3708.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Lest We Forget', 'Comic Books', 'Comics', 'CAD', '2016-06-11', 15000.0, '2016-05-12 05:26:39', 106.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['sixsixsixeyes.com', 'Horror', 'Film & Video', 'CAD', '2014-09-08', 4000.0, '2014-08-09 02:35:30', 0.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Kitty Cam!', 'Animals', 'Photography', 'USD', '2014-10-12', 100.0, '2014-09-12 22:24:02', 10.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Virtually Famous - a film about Social Media', 'Documentary', 'Film & Video', 'USD', '2012-03-04', 12000.0, '2012-02-07 20:40:14', 3587.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['100 Meditations', 'Nonfiction', 'Publishing', 'USD', '2013-05-31', 7777.0, '2013-05-01 10:06:02', 256.11, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Milestone', 'Apps', 'Technology', 'AUD', '2015-09-20', 800000.0, '2015-08-21 07:01:56', 15.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Harvey & The Bird need a piano!', 'Musical', 'Theater', 'USD', '2017-12-06', 1600.0, '2017-11-24 17:28:34', 1660.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Middle Ground', 'Radio & Podcasts', 'Publishing', 'USD', '2013-11-25', 59000.0, '2013-10-25 13:49:08', 19838.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Unleavened - Midwestern Church Meets LGBT', 'Fiction', 'Publishing', 'USD', '2014-02-16', 5000.0, '2014-01-27 22:45:52', 30.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['The Highridge Massacre - Horror film', 'Horror', 'Film & Video', 'GBP', '2015-10-02', 2500.0, '2015-08-28 01:01:50', 2573.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Issue: Erasure', 'Mixed Media', 'Art', 'USD', '2012-04-18', 4500.0, '2012-03-28 01:26:55', 5061.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Worlds Smartest Travel Companion Bag by EzAmaze', 'Product Design', 'Design', 'USD', '2016-09-30', 30000.0, '2016-08-01 14:56:54', 2159.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['PostNorma Jewellery Line', 'Jewelry', 'Fashion', 'EUR', '2015-07-30', 2000.0, '2015-07-01 00:07:02', 500.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Project Maiden - a Zeldalike in Reverse', 'Video Games', 'Games', 'USD', '2013-08-01', 9600.0, '2013-07-02 00:31:07', 12221.32, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Steampunk Art Postcards,Greeting Cards and Jewelry!', 'Illustration', 'Art', 'USD', '2012-09-18', 1000.0, '2012-09-04 18:52:00', 1140.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Between Lands and Longings Living Room Opera in Australia', 'Art', 'Art', 'GBP', '2013-10-28', 1700.0, '2013-10-08 14:33:30', 2050.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['One Man Band', 'Shorts', 'Film & Video', 'USD', '2013-10-26', 825.0, '2013-09-24 00:30:20', 895.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Nashville Biscuit Company - A Biscuit Bar (Canceled)', 'Restaurants', 'Food', 'USD', '2014-10-25', 225000.0, '2014-08-26 23:03:45', 250.0, 'canceled']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['TAINO QUEEN ,COLUMBUS,CONQUISTADORS,LOVE,SEX,SLAVERY', 'Fiction', 'Publishing', 'USD', '2017-03-26', 2000.0, '2017-02-24 20:44:58', 1.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['JUNK: Rubbish to Gold', 'Installations', 'Art', 'GBP', '2015-07-17', 3000.0, '2015-06-16 17:51:35', 3166.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Funny videos project', 'Comedy', 'Film & Video', 'AUD', '2016-01-13', 1000.0, '2015-11-14 00:31:47', 0.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "[\"Help fund recording costs for Wrecluse's debut solo album\", 'Hip-Hop', 'Music', 'USD', '2016-10-12', 850.0, '2016-09-12 20:57:31', 165.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['City Slate', 'Product Design', 'Design', 'USD', '2015-11-24', 5000.0, '2015-10-26 15:48:26', 5150.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Dale, TX Community Garden', 'Community Gardens', 'Food', 'USD', '2017-11-06', 5000.0, '2017-09-22 06:09:53', 60.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Crossroad', 'Comedy', 'Film & Video', 'AUD', '2014-11-26', 250.0, '2014-10-27 14:24:10', 0.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Disco Dog - The smartphone controlled LED dog vest', 'Wearables', 'Technology', 'USD', '2015-04-12', 15000.0, '2015-03-13 18:01:04', 22757.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "[\"Different Grain - Christopher Plowman's First Solo Album\", 'Music', 'Music', 'USD', '2015-08-22', 5000.0, '2015-07-23 22:07:45', 5150.0, 'undefined']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['DiveMate Fusion - Connect Your Dive Computer to iPhone & Co', 'Hardware', 'Technology', 'EUR', '2015-07-14', 47500.0, '2015-06-15 06:21:44', 14260.0, 'canceled']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "[\"PRINT'N FOG, PRINTABLE FOG MACHINE FOR TABLETOP GAMES\", 'Tabletop Games', 'Games', 'EUR', '2017-11-16', 500.0, '2017-10-16 20:03:07', 2243.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Mat Slovacek Debut CD', 'Music', 'Music', 'USD', '2012-09-16', 6000.0, '2012-07-18 19:50:10', 6300.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['AskACharacter (Canceled)', 'Games', 'Games', 'USD', '2015-05-26', 1000.0, '2015-04-26 02:48:06', 0.0, 'canceled']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Austin Taylor - Winters, Fevers, and Devils', 'Music', 'Music', 'USD', '2014-03-09', 1000.0, '2014-02-07 16:25:29', 1224.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Easy Shopper', 'Apps', 'Technology', 'USD', '2014-09-21', 17000.0, '2014-08-22 13:21:25', 10.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Culinary Arts Food Truck Style', 'Food Trucks', 'Food', 'USD', '2015-06-15', 10000.0, '2015-05-16 06:09:29', 0.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['La Malformación de Xiomara', 'Thrillers', 'Film & Video', 'MXN', '2018-01-20', 500000.0, '2017-12-21 07:48:18', 0.0, 'live']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Fabric and surface design by Ella Ella Design', 'Fashion', 'Fashion', 'EUR', '2014-05-29', 3000.0, '2014-04-29 06:25:34', 0.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Creating a beautiful music video for a beautiful EDM song', 'Film & Video', 'Film & Video', 'USD', '2014-03-24', 1000.0, '2014-02-21 21:46:59', 40.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Tonight at the Chateau', 'Film & Video', 'Film & Video', 'USD', '2016-10-03', 5500.0, '2016-09-03 04:10:37', 5500.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Trilogy Pens ZERØ', 'Product Design', 'Design', 'USD', '2016-11-15', 10000.0, '2016-10-17 06:06:13', 23472.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Summer Blood - Full Length Album Release', 'Indie Rock', 'Music', 'USD', '2014-03-27', 2000.0, '2014-02-25 19:49:10', 2534.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "[\"I'mTrying Here\", 'Art', 'Art', 'USD', '2015-11-29', 12000.0, '2015-10-15 20:00:33', 2541.5, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "[\"I Wouldn't be Boys With You if You Were a Poser\", 'Narrative Film', 'Film & Video', 'USD', '2012-06-30', 1000.0, '2012-05-31 00:53:24', 1080.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Housesitting. (Canceled)', 'Shorts', 'Film & Video', 'USD', '2012-09-15', 10000.0, '2012-08-16 22:28:50', 10.0, 'canceled']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Political Vendetta: Voices for Democracy! (Canceled)', 'Periodicals', 'Publishing', 'USD', '2015-07-13', 1500.0, '2015-05-14 05:56:26', 116.0, 'canceled']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "[\"Cedar's Classical Ballet Needs a Home\", 'Spaces', 'Dance', 'USD', '2015-07-01', 8000.0, '2015-06-08 20:31:22', 2830.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Faces of Freedom', 'Painting', 'Art', 'USD', '2016-08-28', 12000.0, '2016-06-29 21:36:04', 2298.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Baker Man debut EP', 'Indie Rock', 'Music', 'USD', '2014-12-07', 3000.0, '2014-11-07 03:05:35', 323.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Postbag', 'Software', 'Technology', 'GBP', '2013-07-23', 120000.0, '2013-05-24 23:09:36', 100.0, 'canceled']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['24\" x 12\" Laser Cutter/Engraver by Light Phase Technologies', 'Fabrication Tools', 'Technology', 'USD', '2017-08-29', 50000.0, '2017-07-22 13:36:05', 20192.0, 'canceled']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Confessions of a Superhero', 'Comedy', 'Film & Video', 'USD', '2016-02-03', 10000.0, '2016-01-04 19:14:54', 10482.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['\"Mukha-Tsokotukha\" SoloSchool Youth Play', 'Plays', 'Theater', 'USD', '2014-05-23', 4000.0, '2014-04-23 22:01:47', 4035.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Landing in Mumbai: Season Two', 'Webseries', 'Film & Video', 'USD', '2011-10-07', 5000.0, '2011-09-07 16:03:39', 5447.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Tree-Beez 3D Animated Short', 'Animation', 'Film & Video', 'USD', '2014-07-21', 6900.0, '2014-06-13 16:58:02', 1822.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['\" SEND IN THE CLOWNS\" (Canceled)', 'Documentary', 'Film & Video', 'USD', '2015-06-13', 1500.0, '2015-04-22 22:02:50', 0.0, 'canceled']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Pirates! card game', 'Tabletop Games', 'Games', 'AUD', '2013-12-17', 30000.0, '2013-11-17 20:07:12', 9597.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['FreeBay for Australians (Canceled)', 'Web', 'Technology', 'AUD', '2014-09-18', 6000.0, '2014-08-19 05:46:10', 50.0, 'canceled']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['LOXXIO: Internetkriminalität betrifft jeden (Canceled)', 'Software', 'Technology', 'EUR', '2015-11-06', 30000.0, '2015-10-13 21:17:19', 0.0, 'canceled']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Team Notion The Game (PC/MAC/PSVITA/MOBILE)', 'Video Games', 'Games', 'USD', '2012-04-19', 3000.0, '2012-03-20 01:43:04', 3596.5, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Owen Stevenson First solo EP & Music Video', 'Pop', 'Music', 'USD', '2013-04-03', 5000.0, '2013-03-04 20:03:24', 5108.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['The Illusion', 'Theater', 'Theater', 'USD', '2011-11-08', 2500.0, '2011-10-09 05:51:07', 3320.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Healing the Healer', 'Nonfiction', 'Publishing', 'USD', '2014-01-07', 15000.0, '2013-12-15 03:55:02', 36.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Bradshaw', 'Webseries', 'Film & Video', 'GBP', '2014-07-31', 2000.0, '2014-07-01 20:55:23', 0.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Personalised Engraved Wooden Gifts', 'Woodworking', 'Crafts', 'EUR', '2016-03-01', 1900.0, '2016-01-16 22:04:09', 5.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Tara The Game', 'Video Games', 'Games', 'USD', '2018-02-05', 5500.0, '2017-12-10 22:09:08', 5.0, 'live']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Help Ministry Food Truck will send donors samples', 'Food Trucks', 'Food', 'USD', '2016-03-18', 20000.0, '2016-02-17 22:56:49', 68.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['HOBS', 'Apps', 'Technology', 'USD', '2016-04-29', 37000.0, '2016-03-10 17:05:17', 51.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['- The Slatewood Lamp Collection -', 'Product Design', 'Design', 'USD', '2015-01-07', 5000.0, '2014-11-24 06:02:16', 15916.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Fireball (By Moviestar) - Music Video', 'Music Videos', 'Film & Video', 'NOK', '2016-05-26', 15000.0, '2016-04-26 21:41:50', 15887.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Varsity Gaming Military RP Server', 'Video Games', 'Games', 'USD', '2015-11-12', 150.0, '2015-10-13 21:57:56', 150.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "[\"Hell's Gate - A Short Horror Film\", 'Horror', 'Film & Video', 'USD', '2017-08-12', 1250.0, '2017-07-23 00:29:09', 55.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Vibrant Classic and Chronograph Watches Starting at $60', 'Accessories', 'Fashion', 'USD', '2016-08-19', 15000.0, '2016-07-20 05:01:15', 3610.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['The Art Grab Bag (Canceled)', 'Art', 'Art', 'USD', '2014-09-06', 5000.0, '2014-08-07 22:47:39', 5.0, 'canceled']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Custom Accounting & Tax System Website for Truck Drivers', 'Web', 'Technology', 'USD', '2015-05-01', 15000.0, '2015-04-02 17:32:11', 0.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['The Entertainment Academy', 'Television', 'Film & Video', 'USD', '2014-08-27', 10000.0, '2014-07-28 17:55:41', 0.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['600 Space Aliens: A Short Film by Scott Bateman', 'Experimental', 'Film & Video', 'USD', '2016-02-18', 3000.0, '2016-01-19 20:52:56', 4002.49, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Zombies: The New Plague (A Survival Card Game)', 'Tabletop Games', 'Games', 'USD', '2013-03-22', 600.0, '2013-02-20 20:02:59', 465.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Lean, Mean & Green doc distribution', 'Documentary', 'Film & Video', 'USD', '2013-09-27', 5000.0, '2013-08-28 03:58:13', 5109.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['ArcSling Motion Converter - Turn Movement into Electricity', 'Hardware', 'Technology', 'USD', '2016-11-28', 30000.0, '2016-09-29 12:28:29', 2648.0, 'canceled']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Hem + Haw: Turning old jeans into new bags.', 'Accessories', 'Fashion', 'USD', '2016-09-30', 15000.0, '2016-08-31 16:01:19', 7409.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['\"Dog\"', 'Shorts', 'Film & Video', 'USD', '2012-07-27', 5000.0, '2012-06-27 06:25:49', 7999.5, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Perfect College App', 'Web', 'Journalism', 'USD', '2017-09-22', 1500.0, '2017-08-23 03:08:31', 105.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['I Prescribe To FUKITOL - The Movie (Canceled)', 'Documentary', 'Film & Video', 'CAD', '2014-10-09', 5000.0, '2014-09-09 03:55:49', 5282.0, 'canceled']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Excuse The Houston In Me', 'Hip-Hop', 'Music', 'USD', '2015-03-04', 15000.0, '2015-02-02 15:05:49', 3.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Natures Beauty - a book of waves (Canceled)', 'Nature', 'Photography', 'USD', '2014-05-22', 3500.0, '2014-04-22 08:38:05', 235.0, 'canceled']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['FabricZoom: Digital Fabric Printing in the Studio', 'Apparel', 'Fashion', 'USD', '2017-09-19', 100000.0, '2017-08-05 18:18:53', 12922.0, 'canceled']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Lab1500 Mural', 'Public Art', 'Art', 'USD', '2013-11-01', 8500.0, '2013-10-02 12:40:22', 8706.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['RP - Sketches of Girls', 'Illustration', 'Art', 'EUR', '2016-07-28', 250.0, '2016-07-08 17:11:39', 0.0, 'canceled']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['The Tuned In Musician: a book on meditation 4 musicians', 'Nonfiction', 'Publishing', 'USD', '2013-07-05', 1000.0, '2013-05-06 21:45:15', 1103.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Party Hoppers - One Festival At A Time...', 'Television', 'Film & Video', 'USD', '2014-08-25', 9850.0, '2014-07-17 22:22:20', 1607.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "[\"Hope's Edge\", 'Documentary', 'Film & Video', 'USD', '2017-06-09', 20000.0, '2017-05-04 17:20:12', 10357.28, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Estamos Ensemble: US/Mexico Cross Border Musical Exchange', 'Music', 'Music', 'USD', '2011-05-21', 6200.0, '2011-04-21 13:10:51', 551.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['T-Eck: The Illuminated Set-Square', 'Gadgets', 'Technology', 'EUR', '2016-12-24', 63485.0, '2016-11-22 22:22:08', 455.0, 'canceled']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Education Resources For All', 'Academic', 'Publishing', 'GBP', '2014-11-03', 20000.0, '2014-10-04 21:16:11', 0.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Life, After', 'Shorts', 'Film & Video', 'USD', '2011-12-15', 1000.0, '2011-11-07 19:21:01', 1675.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['sTiles: Quality Photo Stickers - Movable & Water-Resistant', 'Photography', 'Photography', 'USD', '2017-07-24', 10000.0, '2017-06-22 20:46:24', 10050.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Statix CMS: just focus on website design.', 'Software', 'Technology', 'EUR', '2018-01-18', 25000.0, '2017-12-04 16:05:24', 15.0, 'canceled']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['THE TIN: a new musical by Rona Siddiqui & Zayre Ferrer', 'Theater', 'Theater', 'USD', '2012-10-19', 5000.0, '2012-09-28 22:17:31', 5190.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Build The Soft Camp', 'Public Art', 'Art', 'USD', '2013-08-16', 1500.0, '2013-07-27 00:38:30', 1633.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "[\"The Firefly Ring Collection - By Norwood's of Nashville\", 'Product Design', 'Design', 'USD', '2016-02-22', 500.0, '2016-01-26 00:09:24', 7345.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['VET Brand - Support Vet Owned Companies', 'Apparel', 'Fashion', 'USD', '2014-08-22', 500.0, '2014-07-23 21:22:25', 530.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['The Word From The Street', 'Webseries', 'Film & Video', 'USD', '2013-10-30', 500.0, '2013-10-01 00:07:43', 579.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Europe Mission Photography', 'Photobooks', 'Photography', 'EUR', '2016-05-15', 70000.0, '2016-04-15 00:36:13', 1.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['NICO The Film', 'Shorts', 'Film & Video', 'CAD', '2014-02-24', 5000.0, '2014-01-02 21:07:44', 5050.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Kharnage... Hell Yearghh !', 'Tabletop Games', 'Games', 'EUR', '2016-04-14', 10000.0, '2016-03-24 20:00:15', 168717.52, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "[\"A Live Album of Ukulele Legend and Jazz Guitarist Bill Tapia's 100th Birthday Concert\", 'Music', 'Music', 'USD', '2010-07-29', 13000.0, '2010-04-30 19:03:40', 14974.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Mission Violet', 'Indie Rock', 'Music', 'USD', '2014-03-02', 4000.0, '2014-02-16 22:31:37', 4270.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['2015 No Fire Zone Impact Distribution Project', 'Documentary', 'Film & Video', 'GBP', '2015-02-23', 10000.0, '2015-02-02 10:49:12', 27630.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Wine Glass Mask ™', 'Product Design', 'Design', 'USD', '2017-06-07', 37000.0, '2017-04-18 03:27:38', 182.0, 'canceled']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Go FOURth, and CLOVER your city in LOVE and LUCK', 'Conceptual Art', 'Art', 'USD', '2014-03-01', 3000.0, '2014-01-30 01:10:40', 350.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "[\"Michael J. Richardson's - Ultimate Driver 300! - Card Game.\", 'Tabletop Games', 'Games', 'AUD', '2013-12-19', 1000.0, '2013-11-19 00:27:07', 12.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Dingus Wishes - a short comedic film about voting on a wish', 'Comedy', 'Film & Video', 'USD', '2017-10-23', 3500.0, '2017-09-26 16:02:59', 5151.19, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['RENTED TO THE DEAD issue 3 & complete VOLUME 1 (zombies)', 'Graphic Novels', 'Comics', 'GBP', '2014-07-06', 850.0, '2014-05-27 23:54:18', 1320.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Are You Smarter Than A Porn Star?', 'Video Games', 'Games', 'USD', '2016-01-13', 3000.0, '2015-12-30 17:28:29', 40.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Food in 5. Education and recipe system.', 'Webseries', 'Film & Video', 'AUD', '2015-10-22', 18000.0, '2015-09-22 02:27:48', 0.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['MOLDOVER: waaaaay more than an album! - \"FOUR TRACK\"', 'Electronic Music', 'Music', 'USD', '2013-12-02', 20000.0, '2013-10-30 11:29:33', 35306.22, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['\"ReRun\" a feature film by Stonestreet Studios', 'Drama', 'Film & Video', 'USD', '2015-05-31', 35000.0, '2015-04-01 18:18:11', 260.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Turning an eBook to print.', 'Publishing', 'Publishing', 'CAD', '2014-04-23', 2000.0, '2014-04-04 05:17:25', 302.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Urban Culture. Small batch fresh Oregon french style yogurt', 'Food', 'Food', 'USD', '2014-06-22', 20000.0, '2014-04-23 21:03:09', 101.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['DEMIGODS & DEMONS - The Cresnix Twins', 'Fiction', 'Publishing', 'USD', '2013-02-25', 3000.0, '2013-01-26 03:20:13', 15.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Bow Tanglers First CD - Everett Elam and Emily Phillips', 'Country & Folk', 'Music', 'USD', '2017-03-16', 1000.0, '2017-02-14 06:19:07', 1346.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['HyperChiller - Iced coffee in 60 seconds', 'Product Design', 'Design', 'USD', '2015-08-10', 15000.0, '2015-07-06 01:39:19', 16371.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['LIPKIT / LIPDUO BY ICARD COSMETICS', 'Product Design', 'Design', 'CAD', '2018-01-22', 10000.0, '2017-12-18 19:52:13', 25.0, 'live']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Foxhill Printmaker goes to Chicago!', 'Illustration', 'Art', 'USD', '2015-05-11', 4000.0, '2015-04-27 19:12:01', 4401.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Dearly Departed', 'Narrative Film', 'Film & Video', 'USD', '2011-10-07', 30000.0, '2011-09-07 19:31:11', 12583.94, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['The Test Tube Protein Shaker - Guaranteed for Life', 'Product Design', 'Design', 'USD', '2015-07-27', 12500.0, '2015-06-22 08:24:22', 2000.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Sim football', 'Tabletop Games', 'Games', 'CAD', '2014-01-09', 35000.0, '2013-12-10 00:36:19', 1.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['ATHENA: A Short Film', 'Shorts', 'Film & Video', 'GBP', '2013-04-12', 2750.0, '2013-03-13 22:51:12', 3242.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['ZENTIVA: A Philosophæ of Cannabis (Canceled)', 'Nonfiction', 'Publishing', 'CAD', '2016-05-28', 8500.0, '2016-05-03 22:48:14', 0.0, 'canceled']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Being Ginger', 'Documentary', 'Film & Video', 'USD', '2012-09-27', 10000.0, '2012-08-28 12:45:26', 12869.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Dining with Darling - Think like a chef on Public Television', 'Television', 'Film & Video', 'USD', '2014-08-11', 50000.0, '2014-07-12 03:20:34', 5262.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['P.S. Rush', 'Documentary', 'Film & Video', 'USD', '2016-11-08', 35000.0, '2016-10-05 16:42:35', 5.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['TRVL Wallet', 'Product Design', 'Design', 'USD', '2015-02-21', 500.0, '2015-01-22 01:15:05', 665.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['African American Art Showcase', 'Art', 'Art', 'USD', '2015-07-20', 11000.0, '2015-06-20 22:03:59', 0.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Wendy Nichol - Second Album Kick Off', 'Pop', 'Music', 'USD', '2013-08-11', 5000.0, '2013-06-27 23:38:23', 5020.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Suinda', 'Comic Books', 'Comics', 'USD', '2016-09-01', 500.0, '2016-08-12 21:45:01', 546.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Unplugged Worship: Worshiping God Beyond the Church Service', 'Nonfiction', 'Publishing', 'USD', '2016-08-20', 5000.0, '2016-07-06 03:17:05', 106.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['From Rocking Combat Boots to Indie Rock & Pop (Canceled)', 'Indie Rock', 'Music', 'USD', '2013-08-18', 12000.0, '2013-07-19 20:46:28', 125.0, 'canceled']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Jon and Tiffany Aitken CD Project', 'Music', 'Music', 'USD', '2011-05-14', 5000.0, '2011-04-04 05:00:18', 5515.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['SFNM2- The Southwest Festival of New Music Presented by SFNM', 'Classical Music', 'Music', 'USD', '2012-06-12', 2000.0, '2012-05-02 03:57:01', 270.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "[\"Poor Man's Whiskey NEW ALBUM: Juniper Mountain\", 'Music', 'Music', 'USD', '2017-11-02', 30000.0, '2017-10-03 02:13:18', 6710.2, 'canceled']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Squeaky Shoe Stories', \"Children's Books\", 'Publishing', 'AUD', '2014-08-07', 4000.0, '2014-07-08 09:34:06', 730.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['A Child of the Illuminati', 'Publishing', 'Publishing', 'USD', '2017-10-16', 500.0, '2017-09-26 15:29:45', 0.0, 'canceled']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['#BeerWithFriends: Raise your glass to UNITY WORLDWIDE!', 'Documentary', 'Film & Video', 'USD', '2016-01-02', 3500.0, '2015-12-01 22:56:20', 188.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Wood Imaginations', 'Woodworking', 'Crafts', 'USD', '2016-11-20', 35000.0, '2016-10-21 19:50:07', 10.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Urban Hum: Producing Honey in the Heart of the City', 'Small Batch', 'Food', 'AUD', '2016-12-09', 20000.0, '2016-11-19 01:09:27', 22558.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Solo Hiking for Women over 50', 'Nonfiction', 'Publishing', 'USD', '2013-08-08', 3000.0, '2013-07-06 00:47:31', 756.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Travoo: Improved Ride-Sharing & Peer Sharing!', 'Apps', 'Technology', 'USD', '2016-11-18', 50000.0, '2016-09-19 18:38:00', 131.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Northern Lights', 'World Music', 'Music', 'USD', '2016-07-17', 2500.0, '2016-06-17 00:49:09', 0.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Billy Ferrell...his songs (Canceled)', 'Pop', 'Music', 'USD', '2013-08-22', 40000.0, '2013-08-07 16:51:07', 0.0, 'canceled']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Tales from Estonia', 'Photography', 'Photography', 'USD', '2012-04-21', 4000.0, '2012-03-21 19:49:00', 4297.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Raspberry Pi Case', 'Product Design', 'Design', 'USD', '2012-09-02', 40000.0, '2012-08-03 16:54:04', 1291.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Osiris Chronicles HD', 'Webseries', 'Film & Video', 'USD', '2012-08-19', 650.0, '2012-07-20 08:08:10', 37.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['\"Caviar\" a novel', 'Fiction', 'Publishing', 'USD', '2014-01-31', 5500.0, '2013-12-27 17:11:22', 488.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Hand-Made Infinity Design Pens', 'Woodworking', 'Crafts', 'USD', '2015-06-02', 500.0, '2015-05-11 16:28:38', 300.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['HAKBRAYNE', 'Immersive', 'Theater', 'GBP', '2014-08-08', 2000.0, '2014-07-25 17:34:50', 2204.69, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "[\"Gilead's Goblinz Coloring Book\", \"Children's Books\", 'Publishing', 'USD', '2013-09-28', 5000.0, '2013-08-26 20:43:49', 5167.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Hold the Breach (Canceled)', 'Fiction', 'Publishing', 'GBP', '2014-06-08', 950.0, '2014-05-09 00:56:19', 24.0, 'canceled']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['the startup - a feature film', 'Narrative Film', 'Film & Video', 'USD', '2012-09-18', 25000.0, '2012-08-19 07:19:47', 25649.81, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['2 hour drone documentary of Kyrgyzstan', 'Documentary', 'Film & Video', 'AUD', '2017-07-29', 11000.0, '2017-07-07 17:48:17', 60.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Northeast Ohio Dukes Yankee Lake Home Coming Documentary', 'Documentary', 'Film & Video', 'USD', '2015-04-10', 2300.0, '2015-03-10 23:09:47', 22.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Engineering through Math', 'Makerspaces', 'Technology', 'USD', '2015-01-27', 15000.0, '2014-12-28 06:29:14', 456.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['October Gothic 2 photo project', 'Photography', 'Photography', 'USD', '2011-07-06', 2000.0, '2011-06-08 03:38:22', 0.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "[\"(...and you're just not good enough) a multimedia arts show\", 'Theater', 'Theater', 'USD', '2011-01-22', 2011.0, '2010-12-21 02:52:12', 2970.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['MUSE Launch', 'Fiction', 'Publishing', 'USD', '2012-10-14', 5000.0, '2012-09-26 03:24:44', 160.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['www.Hardy-Design.de (Canceled)', 'Product Design', 'Design', 'EUR', '2015-06-25', 15000.0, '2015-05-26 23:57:08', 10.0, 'canceled']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "[\"Let's get Edwardstown to Nationals!\", 'Dance', 'Dance', 'AUD', '2014-08-07', 2500.0, '2014-07-08 10:31:38', 2504.81, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Lemonade', 'Shorts', 'Film & Video', 'USD', '2013-07-19', 1000.0, '2013-06-19 19:54:09', 1350.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Misguided an Independent Film', 'Drama', 'Film & Video', 'USD', '2017-01-08', 20000.0, '2016-12-13 07:51:39', 15.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['9 Pocket Shirts: On a Mission to Create Conversation', 'Apparel', 'Fashion', 'USD', '2015-08-14', 9999.0, '2015-07-15 20:39:34', 1399.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['3D Edu', '3D Printing', 'Technology', 'USD', '2016-12-19', 4500.0, '2016-10-20 16:40:34', 68.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['WHATEVER: a web series about the real world of teens', 'Webseries', 'Film & Video', 'USD', '2011-11-21', 12000.0, '2011-10-22 18:43:58', 1330.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['45th Parallel (Canceled)', 'Literary Journals', 'Publishing', 'USD', '2016-03-21', 1500.0, '2016-02-20 02:35:10', 1940.0, 'canceled']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['A Day of Rainbow Rex', 'Product Design', 'Design', 'USD', '2016-12-16', 10000.0, '2016-11-22 15:04:36', 565.0, 'canceled']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "[\"Valor-Visions presents Mama's Child - a gospel musical\", 'Theater', 'Theater', 'USD', '2013-05-04', 2000.0, '2013-03-05 19:19:05', 2000.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "[\"Folk-Pop Artist Katey Laurel's New Record w/ Neilson Hubbard\", 'Pop', 'Music', 'USD', '2010-12-09', 2000.0, '2010-10-25 00:15:55', 2292.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['52 Cakes', 'Food', 'Food', 'USD', '2012-02-19', 1000.0, '2012-01-20 18:48:29', 1349.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Wall Mounts for Skylanders, Disney Infinity, Amiibo, & Lego', 'Video Games', 'Games', 'USD', '2015-06-29', 1000.0, '2015-05-30 02:07:58', 2812.69, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Furtherance the Board Game', 'Tabletop Games', 'Games', 'USD', '2016-05-05', 15000.0, '2016-04-04 02:00:05', 2480.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Balance watch: A philosophy in a watch...', 'Product Design', 'Design', 'USD', '2014-02-11', 8000.0, '2014-01-02 22:38:51', 11162.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Firefight!', 'Fiction', 'Publishing', 'USD', '2012-07-31', 10000.0, '2012-06-16 03:59:12', 20.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['To Walk Again, The Javy Macias Story', 'Documentary', 'Film & Video', 'USD', '2015-05-13', 125000.0, '2015-04-21 23:17:15', 8451.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['DREAM OF A DANCE by John Giblin, Directed by Jolie Oliver', 'Festivals', 'Film & Video', 'USD', '2015-01-18', 1500.0, '2015-01-11 02:43:36', 2741.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Beet Street Cold-Pressed Juicery', 'Restaurants', 'Food', 'USD', '2014-08-20', 6000.0, '2014-07-21 23:25:04', 6285.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['10 Year Anniversary CD by TRI-FI: Staring into the Sun', 'Jazz', 'Music', 'USD', '2013-12-09', 6500.0, '2013-11-22 21:41:09', 7137.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Alice In Wonderland!', 'Theater', 'Theater', 'USD', '2012-06-15', 220.0, '2012-05-16 05:37:08', 320.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Tracy Guy White \"Unhinged\"', 'Music', 'Music', 'USD', '2015-07-21', 25000.0, '2015-06-25 18:31:03', 25.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Extremely Comfortable Track Pants', 'Apparel', 'Fashion', 'AUD', '2014-12-21', 850.0, '2014-11-21 05:07:13', 83.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['The Sad Man Kickstarter: Sad For The Holidays', 'Art', 'Art', 'USD', '2015-12-26', 1000.0, '2015-11-19 06:33:56', 0.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Rudy + Neal Go Fishing', 'Documentary', 'Film & Video', 'USD', '2014-04-11', 15000.0, '2014-03-12 16:36:37', 16870.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Laurel & Hardy: The Magic Behind the Movies–Special Edition', 'Nonfiction', 'Publishing', 'USD', '2016-01-01', 16000.0, '2015-12-01 21:36:21', 47206.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Castaway Cuties Sketchcard Project (Canceled)', 'Comics', 'Comics', 'USD', '2011-11-28', 5000.0, '2011-09-29 19:49:46', 265.0, 'canceled']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['L’Hibiscus et ses vertus en bouteille, ça vous tente ?', 'Drinks', 'Food', 'EUR', '2015-10-30', 10000.0, '2015-09-01 00:02:10', 1826.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['a collaborative work with artist Jesse Peper and the elseproduct label', 'Indie Rock', 'Music', 'USD', '2010-09-18', 2200.0, '2010-08-17 20:47:40', 2240.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Real Women morning routines (Canceled)', 'Video Art', 'Art', 'USD', '2015-08-15', 12000.0, '2015-06-16 16:31:37', 0.0, 'canceled']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['From Mud to Music - a journey to a 12 hole Ocarina', 'Performance Art', 'Art', 'USD', '2013-12-08', 500.0, '2013-11-08 17:42:55', 947.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['The Hudson Standard Bitters and Shrubs', 'Small Batch', 'Food', 'USD', '2014-06-26', 12000.0, '2014-05-27 17:22:23', 13279.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['4EVER - N - MYHEART ~ AN INDIGENOUS MUSIC PROJECT', 'Country & Folk', 'Music', 'USD', '2013-09-09', 6000.0, '2013-08-09 16:42:00', 170.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Deep Peeps', 'Graphic Design', 'Design', 'USD', '2013-06-09', 5000.0, '2013-05-10 05:48:02', 882.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['The Invention of E.J. Whitaker', 'Comic Books', 'Comics', 'USD', '2016-03-26', 7500.0, '2016-02-25 16:01:32', 17514.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "[\"U.K Pop Group Frixion's American Promo Tour!\", 'Pop', 'Music', 'CAD', '2014-01-30', 200000.0, '2013-12-11 23:53:59', 100.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Valhal', 'Tabletop Games', 'Games', 'EUR', '2017-10-16', 20000.0, '2017-09-16 11:58:33', 5794.0, 'canceled']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['PROJECT KIDZ', 'Hip-Hop', 'Music', 'USD', '2011-02-28', 10000.0, '2011-01-29 19:37:17', 122.22, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['the beauty of life', 'Crafts', 'Crafts', 'USD', '2010-09-20', 2500.0, '2010-08-10 13:27:54', 5710.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Tour: Help us get the music heard.', 'Rock', 'Music', 'USD', '2011-09-01', 1700.0, '2011-07-28 20:34:54', 35.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Brian Zator-Marimba Solo and Chamber Albums', 'Classical Music', 'Music', 'USD', '2015-02-27', 4500.0, '2015-01-28 04:57:29', 6015.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Pet Stones memorial markers for the animals in our families', 'Crafts', 'Crafts', 'USD', '2014-04-15', 25000.0, '2014-02-14 11:24:37', 55.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Squares - A Documentary Film', 'Documentary', 'Film & Video', 'USD', '2014-04-27', 3000.0, '2014-03-13 16:46:37', 3237.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Follow a Firefighter', 'Documentary', 'Film & Video', 'AUD', '2015-08-25', 2500.0, '2015-07-26 11:58:00', 20.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Participate: Together We Can End Racism', 'Journalism', 'Journalism', 'USD', '2015-03-20', 50000.0, '2015-01-22 00:04:35', 1.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Streetlight', 'Music', 'Music', 'GBP', '2016-04-16', 3000.0, '2016-03-17 00:33:30', 0.0, 'undefined']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Grandma App to help families find quality child care', 'Apps', 'Technology', 'USD', '2016-11-23', 7500.0, '2016-10-24 19:21:25', 0.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Truth Or Err Social Media Trivia Game', 'Mobile Games', 'Games', 'USD', '2017-01-15', 20000.0, '2016-12-16 07:45:30', 10.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['The Truth Project', 'Fiction', 'Publishing', 'USD', '2013-02-10', 2500.0, '2013-01-11 20:24:58', 0.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Hope for the Rebels in a far away galaxy - Prop Replica', 'Art', 'Art', 'USD', '2017-02-07', 500.0, '2017-01-18 03:35:35', 3329.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Eclipse: a simple concept in lighting', 'Design', 'Design', 'USD', '2013-11-25', 5000.0, '2013-10-21 23:25:16', 18428.48, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['REWIND - a Short Film', 'Shorts', 'Film & Video', 'EUR', '2015-08-03', 1000.0, '2015-07-04 16:55:12', 1098.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Basic MAN: Life changing basics for under $20.', 'Apparel', 'Fashion', 'USD', '2017-07-01', 10000.0, '2017-05-23 15:35:37', 13941.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Act for Change: Healing Minds', 'Documentary', 'Film & Video', 'GBP', '2014-08-13', 16000.0, '2014-07-14 22:47:13', 1638.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Steve McClain - New EP - Nashville recording project', 'Rock', 'Music', 'USD', '2014-11-06', 1000.0, '2014-10-07 00:00:59', 465.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['The Travel Academy: Uniting Education and Travel', 'Web', 'Journalism', 'CAD', '2016-09-07', 3000.0, '2016-08-08 08:26:01', 1.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['NIGHT LAND', 'Shorts', 'Film & Video', 'GBP', '2014-07-06', 5000.0, '2014-05-17 08:32:29', 5048.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['The Crimson Rose Cafe', 'Web', 'Technology', 'USD', '2015-05-22', 3000.0, '2015-03-23 06:07:21', 0.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['WhoCaresLdn', 'Apparel', 'Fashion', 'GBP', '2015-09-26', 3000.0, '2015-08-27 13:54:29', 0.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Strumbuddy Magnetic Smartphone Holder for Musicians', 'Technology', 'Technology', 'USD', '2012-02-11', 5000.0, '2011-12-13 03:53:22', 447.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Ketchung! Ketchup with Attitude', 'Small Batch', 'Food', 'USD', '2015-05-28', 6500.0, '2015-04-28 21:47:10', 6871.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Miss Krystle\\'s New Album \"Bad Girl\"', 'Pop', 'Music', 'USD', '2013-07-01', 30000.0, '2013-06-01 18:10:01', 10760.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Bonjour | Hello', 'Graphic Design', 'Design', 'GBP', '2017-11-05', 500.0, '2017-10-06 14:31:05', 0.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Power: Thesis Show on Kickstarter', 'Digital Art', 'Art', 'USD', '2011-10-15', 500.0, '2011-09-15 19:13:03', 646.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Project Battleground: a Soundtrack by Matt Campana', 'Classical Music', 'Music', 'USD', '2011-09-02', 4500.0, '2011-08-03 12:00:10', 20.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Steampunk Fairy Coloring Books & Quilt Charm', 'Art Books', 'Publishing', 'USD', '2017-08-11', 500.0, '2017-07-12 23:54:53', 540.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Butterfly Caught - the Movie', 'Drama', 'Film & Video', 'USD', '2015-09-16', 15000.0, '2015-08-17 17:56:17', 16166.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Help VerseCity finish their New Album!', 'Rock', 'Music', 'USD', '2011-06-13', 2200.0, '2011-04-21 01:53:38', 2423.5, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Organic Coconut Oil and Honey Drops!', 'Vegan', 'Food', 'USD', '2017-05-10', 10000.0, '2017-04-10 21:44:53', 0.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Issues Prodcutions', 'Film & Video', 'Film & Video', 'USD', '2014-08-27', 15000.0, '2014-07-08 08:48:44', 0.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Anthony Small\\'s \"The Christmas Kings of Comedy\"', 'Film & Video', 'Film & Video', 'USD', '2013-09-06', 200000.0, '2013-08-22 17:36:14', 0.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Gibson Custom Cutting Boards 3', 'Crafts', 'Crafts', 'USD', '2016-04-04', 500.0, '2016-03-05 04:08:18', 166.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Stoke: Gourmet BBQ Meats and Appetisers', 'Food', 'Food', 'GBP', '2015-04-01', 10000.0, '2015-02-21 11:14:16', 7317.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "[\"Will Armstrong X's first solo record\", 'Country & Folk', 'Music', 'USD', '2012-12-14', 1700.0, '2012-11-14 23:29:18', 276.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Snark Haus: Greetings for the Wicked Truth', 'Art', 'Art', 'USD', '2012-09-15', 7500.0, '2012-08-22 00:34:23', 8291.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Ok Sock Printed Designer Socks', 'Fashion', 'Fashion', 'USD', '2013-09-11', 3000.0, '2013-08-17 20:31:04', 3283.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Flight of the Frog', 'Animation', 'Film & Video', 'USD', '2013-07-04', 10000.0, '2013-06-04 20:56:17', 3876.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['The Dead Among Us #1', 'Comics', 'Comics', 'USD', '2014-01-20', 5058.0, '2013-12-21 18:25:43', 1263.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Ugly Babies - The funny revolution of revolted babies!', 'Games', 'Games', 'GBP', '2013-02-15', 7000.0, '2013-01-16 15:35:40', 35.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['AUTISM DOCUMENTARY', 'Film & Video', 'Film & Video', 'USD', '2011-06-04', 80000.0, '2011-03-05 02:22:46', 0.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Killa Socks | Wicked Awesome Socks!', 'Apparel', 'Fashion', 'USD', '2017-05-31', 10000.0, '2017-05-01 21:38:51', 661.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Jazz it Up! Season 3', 'Jazz', 'Music', 'USD', '2011-03-15', 75000.0, '2011-02-03 02:41:00', 1035.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Life Project: A Look at the Impact of Mentors', 'Documentary', 'Film & Video', 'USD', '2016-09-08', 3000.0, '2016-08-09 18:01:08', 3040.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "[\"Greg Hinkle is 'ANGRY'.\", 'Comics', 'Comics', 'USD', '2011-09-17', 250.0, '2011-08-24 21:25:57', 905.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Smartphone Case that Suppresses and Contains Battery Fires', 'Technology', 'Technology', 'USD', '2016-12-15', 35000.0, '2016-11-15 22:11:21', 300.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Heroes of Forevia', 'Video Games', 'Games', 'USD', '2012-04-07', 10000.0, '2012-03-08 09:12:51', 3076.89, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['In Clover, by Fiery Crash', 'Indie Rock', 'Music', 'USD', '2015-01-19', 6000.0, '2014-12-21 06:33:26', 6165.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Varsity Entertainment Concert Series', 'R&B', 'Music', 'USD', '2017-07-17', 50000.0, '2017-06-17 04:34:16', 0.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Black Holes', 'Animation', 'Film & Video', 'USD', '2017-03-28', 100000.0, '2017-02-21 16:37:55', 128785.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Bloom (Canceled)', 'Video Games', 'Games', 'USD', '2012-12-18', 150000.0, '2012-11-03 00:24:25', 6571.0, 'canceled']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['QG-1 | Precision Brass Gyroscope', 'Design', 'Design', 'USD', '2017-12-17', 4000.0, '2017-11-17 18:35:45', 4346.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['MOC Me!', 'Publishing', 'Publishing', 'USD', '2010-11-02', 500.0, '2010-10-20 19:05:48', 125.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Omega Neo-Geo MVS Replacement Cartridge Shells', 'Video Games', 'Games', 'USD', '2013-05-24', 22500.0, '2013-04-24 19:07:43', 3753.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Flowing Blade Bushido: A Comic Book Series - Issue #1', 'Comic Books', 'Comics', 'USD', '2015-03-08', 2500.0, '2015-02-06 22:48:05', 2965.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Michale Graves \"The Voice of Liberty\" RADIO WVNJ 1160 AM', 'Journalism', 'Journalism', 'USD', '2014-07-21', 2500.0, '2014-07-13 23:52:46', 918.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Enkel - Changing fashion one T-shirt at a time', 'Apparel', 'Fashion', 'DKK', '2015-01-16', 60000.0, '2014-12-16 15:22:01', 67660.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Placebo Effect', 'Video Games', 'Games', 'USD', '2015-06-27', 10000.0, '2015-05-28 17:53:35', 1508.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['The Lighthouse and the Lock cartoon - funny stuff for kids.', 'Animation', 'Film & Video', 'GBP', '2013-05-17', 37956.0, '2013-04-17 14:08:19', 8315.01, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['The Oldest Sport', 'Documentary', 'Film & Video', 'USD', '2013-04-07', 50000.0, '2013-03-08 03:41:37', 1.23, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Norwood Arena - The Movie. A Documentary Feature Film.', 'Documentary', 'Film & Video', 'USD', '2014-07-18', 6000.0, '2014-05-23 23:38:28', 6042.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Corrigans Catering is in need of a food truck.', 'Food Trucks', 'Food', 'USD', '2014-08-18', 15000.0, '2014-07-19 02:17:09', 661.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Wadude-Adventurous', 'Accessories', 'Fashion', 'USD', '2017-11-07', 1000.0, '2017-09-08 02:28:35', 316.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Reconnect', 'Radio & Podcasts', 'Publishing', 'USD', '2015-02-16', 740.0, '2015-02-06 00:11:27', 960.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['HEart Movement', 'Workshops', 'Dance', 'USD', '2015-09-02', 2000.0, '2015-08-03 19:41:28', 478.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Red Ops 5: Asylum- A Miniatures Game of Modern Horror', 'Tabletop Games', 'Games', 'USD', '2015-12-14', 1500.0, '2015-11-20 00:56:16', 3365.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Surfboards For A Shared Planet', 'Technology', 'Technology', 'USD', '2016-05-28', 40000.0, '2016-04-18 17:15:52', 3626.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Taxi Gourmet: The Berlin Chapter & The Book', 'Journalism', 'Journalism', 'USD', '2010-06-15', 2350.0, '2010-04-08 06:21:19', 3526.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['MagicWand: A wireless remote control for Blackmagic Cameras', 'Film & Video', 'Film & Video', 'AUD', '2014-02-10', 3500.0, '2014-01-20 13:21:06', 950.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Bad Apples™ -The highly offensive unofficial expansion packs', 'Tabletop Games', 'Games', 'CAD', '2016-06-03', 161.0, '2016-05-04 01:36:36', 390.0, 'canceled']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['My 1st Music Single.', 'Music', 'Music', 'USD', '2012-06-02', 2100.0, '2012-05-03 19:44:18', 325.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Funny Gloves, the evolution to the original catch game.', 'Games', 'Games', 'USD', '2014-03-05', 40000.0, '2014-02-03 12:32:01', 20.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Mystery Dice (Canceled)', 'Tabletop Games', 'Games', 'USD', '2014-04-27', 5000.0, '2014-03-22 00:59:10', 504.0, 'canceled']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Sleepy Hollow, The Musical ~Heads Will Roll~', 'Theater', 'Theater', 'USD', '2014-01-26', 4200.0, '2013-12-27 13:24:29', 5133.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Hunter & Cron - Essen Livestream - Berlin Con 2016', 'Tabletop Games', 'Games', 'EUR', '2016-05-15', 2000.0, '2016-04-16 08:59:46', 11557.72, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Spikes And Doors For The Android Platform', 'Video Games', 'Games', 'USD', '2013-08-07', 20000.0, '2013-07-08 20:26:49', 66.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "[\"Quilter's Notions ~ Modern design, forged in tradition\", 'Textiles', 'Art', 'USD', '2017-03-26', 20000.0, '2017-03-01 05:31:28', 176.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Heart and Hearth', 'Food', 'Food', 'USD', '2016-09-09', 100000.0, '2016-08-10 02:44:52', 100.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['\"The Family Business\" Web Series', 'Webseries', 'Film & Video', 'USD', '2014-04-30', 2500.0, '2014-04-02 23:51:27', 376.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Warriors of Kitri Animated Film', 'Narrative Film', 'Film & Video', 'USD', '2014-02-08', 15000.0, '2014-01-04 05:22:26', 1355.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['One Fell Swoop', 'Shorts', 'Film & Video', 'USD', '2010-11-03', 1000.0, '2010-10-04 07:55:13', 45.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Whitney Lyman Records an Original Album!', 'Country & Folk', 'Music', 'USD', '2011-03-15', 1200.0, '2011-02-14 00:18:36', 1250.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Saving Fukushima - Happy Whale and Tiny Whale', \"Children's Books\", 'Publishing', 'USD', '2014-04-03', 9000.0, '2014-03-04 00:15:34', 65.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Aquakit - the complete home aquaponics', 'Spaces', 'Food', 'USD', '2016-07-21', 20000.0, '2016-06-21 16:53:23', 2201.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "[\"SPLASH 25 - World's First Dry Pack Powered by Air\", 'Product Design', 'Design', 'USD', '2015-12-01', 30000.0, '2015-11-02 16:02:54', 11149.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Images of Flood Recovery', 'Photography', 'Photography', 'USD', '2014-03-07', 2000.0, '2014-01-21 02:27:03', 11.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Tortolita Ultralight Aviation', 'Flight', 'Technology', 'USD', '2015-03-17', 6500.0, '2015-02-15 06:33:27', 3.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['BUZZZ: Play the Game, Save the Bees', 'Games', 'Games', 'USD', '2015-08-13', 12000.0, '2015-07-14 12:43:57', 5345.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Datut: A Different Social Networking Website', 'Web', 'Technology', 'EUR', '2016-12-31', 10000.0, '2016-12-15 10:08:48', 27.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['LederKraft Studios first ever 100% customer driven range', 'Fashion', 'Fashion', 'GBP', '2013-04-07', 25000.0, '2013-02-06 22:14:43', 9717.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['The Sonic Boom Gyroscope: High precision toy!', 'Product Design', 'Design', 'CAD', '2015-05-22', 19000.0, '2015-04-17 01:31:28', 21287.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Save Kowabunga Comics!', 'Comics', 'Comics', 'USD', '2014-05-18', 50000.0, '2014-04-17 04:33:58', 1048.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Create a hairdressing search & book app', 'Apps', 'Technology', 'AUD', '2017-05-07', 15000.0, '2017-04-07 22:34:23', 1.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "[\"Avery where's your bottle?\", \"Children's Books\", 'Publishing', 'CAD', '2015-01-01', 4000.0, '2014-12-02 20:43:35', 0.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Crooked (Canceled)', 'Theater', 'Theater', 'USD', '2012-03-04', 800.0, '2012-01-05 02:11:21', 50.0, 'canceled']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Young Voices Nation: The Book Project', 'Publishing', 'Publishing', 'USD', '2011-06-01', 1000.0, '2011-04-21 00:49:23', 1110.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "[\"Pittsburgh CAPA Voice Department presents Foss' GRIFFELKIN\", 'Theater', 'Theater', 'USD', '2013-01-12', 1500.0, '2012-12-13 01:39:57', 895.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Le design graphique, quand on y connaît rien.', 'Graphic Design', 'Design', 'EUR', '2017-09-16', 530.0, '2017-09-01 13:35:17', 910.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Ekah Kim\\'s 3rd Studio Album - \"New Ground\"', 'Jazz', 'Music', 'USD', '2012-12-03', 1650.0, '2012-11-13 19:39:25', 1795.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['ELISA PALOMINO MEMORIES', 'Art Books', 'Publishing', 'GBP', '2016-03-29', 5000.0, '2016-02-28 13:57:13', 6932.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Milestone', 'Documentary', 'Film & Video', 'GBP', '2014-03-17', 550.0, '2014-03-04 23:45:49', 655.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Pieces of the World', 'Classical Music', 'Music', 'USD', '2013-01-10', 8000.0, '2012-12-11 00:20:52', 8875.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Republish book \"China, Mother of Gardens\"', 'Nonfiction', 'Publishing', 'AUD', '2015-11-10', 10000.0, '2015-09-11 15:37:43', 0.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['FEATURE PRESENTATION', 'Performances', 'Dance', 'USD', '2016-06-01', 5000.0, '2016-04-29 22:43:14', 5890.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['The Hooded Eagle', 'Comic Books', 'Comics', 'USD', '2017-03-11', 2500.0, '2017-02-14 18:20:35', 1.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Agophobia', 'Shorts', 'Film & Video', 'USD', '2011-08-01', 10000.0, '2011-06-15 07:26:36', 3533.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Cartoonish Artwear Release/Art Show', 'Art', 'Art', 'USD', '2014-05-10', 8000.0, '2014-04-10 22:01:57', 1.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['\"Photos by Kent\"', 'Narrative Film', 'Film & Video', 'USD', '2012-03-24', 20000.0, '2012-01-24 18:11:48', 5.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Montage Arts Journal', 'Periodicals', 'Publishing', 'USD', '2012-03-19', 2500.0, '2012-02-02 21:41:30', 2685.69, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Help me buy a really expensive TF2 Unusual (Canceled)', 'Video Games', 'Games', 'USD', '2015-10-28', 2000.0, '2015-08-29 23:55:16', 0.0, 'canceled']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Your Cloud Desktop, Anywhere, Any Device, Any Time.', 'Software', 'Technology', 'EUR', '2016-02-04', 6000.0, '2016-01-05 23:01:36', 0.0, 'canceled']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['StudioSS Apparel', 'Apparel', 'Fashion', 'USD', '2016-10-17', 1000.0, '2016-08-20 05:31:53', 1004.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Country Crush Lifting Handle', 'Product Design', 'Design', 'USD', '2015-05-22', 35000.0, '2015-04-22 17:45:40', 625.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['The Wabash Lights - The Beta Test', 'Public Art', 'Art', 'USD', '2015-07-27', 55000.0, '2015-06-24 15:33:27', 59480.61, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['The Last of the Pagan Babies, A Feature Documentary', 'Documentary', 'Film & Video', 'USD', '2011-02-05', 7500.0, '2010-12-22 06:36:18', 7828.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Shonen King', 'Comics', 'Comics', 'USD', '2014-05-19', 1450.0, '2014-03-30 21:46:58', 1485.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Holy Toledo!', 'Nonfiction', 'Publishing', 'USD', '2013-05-02', 9000.0, '2013-04-02 14:15:02', 12240.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Urban Myth Investigators comic (Canceled)', 'Comic Books', 'Comics', 'USD', '2014-11-11', 550.0, '2014-10-17 20:14:30', 0.0, 'canceled']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Hard Rock Cafe - A Book - The History -The Music -The Museum', 'Nonfiction', 'Publishing', 'USD', '2014-05-04', 38000.0, '2014-04-09 17:43:50', 5.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Dust City Diner 2013', 'Performance Art', 'Art', 'USD', '2013-06-19', 3000.0, '2013-05-22 03:50:46', 3196.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['The Forgotten Fairground :: Short Film & Debut Album', 'Music', 'Music', 'GBP', '2015-10-10', 5000.0, '2015-09-10 01:04:58', 5380.0, 'undefined']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['FunVax - A Film About The Conspiracy', 'Documentary', 'Film & Video', 'USD', '2012-12-19', 10000.0, '2012-11-26 18:27:28', 3110.01, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Something Different', 'Tabletop Games', 'Games', 'USD', '2013-07-09', 4000.0, '2013-06-09 07:00:02', 58766.58, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['The Missing Sock Project', 'Fashion', 'Fashion', 'USD', '2017-07-28', 50000.0, '2017-06-28 03:12:54', 4.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['maverick engine-generator - true efficiency', 'Technology', 'Technology', 'USD', '2013-09-23', 1000.0, '2013-08-24 21:45:04', 238.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Queer Heartache', 'Festivals', 'Theater', 'USD', '2016-06-22', 5000.0, '2016-05-31 20:00:11', 5062.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['HIMALAYAN HOODIE - WARM & Superlight - High Performing', 'Apparel', 'Fashion', 'USD', '2015-02-28', 20000.0, '2015-02-02 06:04:21', 21706.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Eighty-Six: The Series', 'Webseries', 'Film & Video', 'USD', '2011-10-16', 2750.0, '2011-09-06 03:57:16', 2839.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['sometimes', 'Illustration', 'Art', 'USD', '2015-03-29', 2300.0, '2015-02-27 04:02:08', 20.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Board Game Republic: board game cafe & pub', 'Tabletop Games', 'Games', 'USD', '2015-11-24', 6200.0, '2015-11-06 07:36:22', 7565.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Your Personal Theme Song', 'Music', 'Music', 'USD', '2015-06-18', 800.0, '2015-05-19 19:49:55', 100.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Mahoyo Breaking Stereotypes: South Africa', 'Documentary', 'Film & Video', 'GBP', '2013-11-21', 15000.0, '2013-09-23 09:40:54', 7779.75, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['2014 undergroundzero festival (Canceled)', 'Theater', 'Theater', 'USD', '2014-05-02', 7000.0, '2014-04-02 15:16:21', 2815.0, 'canceled']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Cornhole Covers: Interchangeable tops for cornhole boards', 'Product Design', 'Design', 'USD', '2017-06-16', 5000.0, '2017-05-25 07:22:02', 5487.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['The Stand Up Desk Kit', 'Product Design', 'Design', 'USD', '2012-11-01', 20000.0, '2012-10-01 11:05:24', 6528.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Local Area Drone Dispatch and Authorization System (LADDAS)', 'Software', 'Technology', 'USD', '2015-10-02', 300000.0, '2015-08-18 05:39:58', 0.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Oracle® Solaris 11 Administration: Expert Wisdom', 'Nonfiction', 'Publishing', 'GBP', '2013-05-26', 7500.0, '2013-03-26 23:46:33', 0.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Cruzamente CD is coming!', 'World Music', 'Music', 'USD', '2014-02-12', 2000.0, '2014-01-12 17:38:05', 2286.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Fallen Hero Rises (Canceled)', 'Video Games', 'Games', 'EUR', '2015-01-15', 1000000.0, '2014-11-16 04:39:55', 1002.0, 'canceled']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Chester: The Hand-Drawn/8-Bit/LCD/Blueprint/etc. platformer!', 'Video Games', 'Games', 'USD', '2011-05-23', 3000.0, '2011-04-23 07:54:01', 3514.58, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Saffron: Tales from the Persian Kitchen', 'Food', 'Food', 'GBP', '2013-05-21', 8500.0, '2013-04-21 10:05:26', 10702.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Candyman 2', 'Documentary', 'Film & Video', 'USD', '2013-06-02', 40000.0, '2013-05-03 01:35:47', 1606.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Urban Spray Paint Art Stall', 'Painting', 'Art', 'AUD', '2015-05-23', 500.0, '2015-04-23 15:53:52', 100.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['XRay Times (Canceled)', 'Print', 'Journalism', 'USD', '2015-05-01', 22500.0, '2015-04-01 23:26:34', 0.0, 'canceled']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['MEGAN MOSHOLDER for ArtPrize', 'Public Art', 'Art', 'USD', '2014-09-07', 6000.0, '2014-08-08 22:17:25', 6034.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['American Police State: The Fall of Freedom', 'Documentary', 'Film & Video', 'USD', '2014-08-30', 25000.0, '2014-07-31 07:00:45', 1.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['SAVIOR OF THE SOUTH', 'Horror', 'Film & Video', 'USD', '2017-02-18', 10000.0, '2017-01-15 21:11:28', 140.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['A Delicate Love - Short Film', 'Drama', 'Film & Video', 'GBP', '2015-05-18', 7000.0, '2015-04-24 17:07:35', 7440.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['TATTUAGE - Metal Tattoo Jewelry', 'Jewelry', 'Fashion', 'USD', '2016-12-16', 10000.0, '2016-10-26 18:20:59', 2289.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Electric Brewing', 'DIY', 'Crafts', 'USD', '2015-09-23', 200.0, '2015-08-24 15:53:44', 470.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['The Weed Chronicles', 'Music', 'Music', 'USD', '2015-11-22', 50000.0, '2015-10-23 20:47:24', 0.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Black Velvet Restaurant & Lounge', 'Restaurants', 'Food', 'USD', '2015-06-18', 400000.0, '2015-05-19 00:49:38', 0.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Scrabble Game Fun Time -YOUTH & ADULTS', 'Tabletop Games', 'Games', 'USD', '2016-09-22', 1200.0, '2016-08-23 20:40:06', 0.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Girls with no Name. The Book.', 'Photobooks', 'Photography', 'EUR', '2017-12-12', 16500.0, '2017-11-06 14:57:37', 16747.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['GamerTutors', 'Web', 'Technology', 'USD', '2017-12-09', 20000.0, '2017-11-09 03:59:23', 201.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['CITIZEN WEALTH', 'Documentary', 'Film & Video', 'USD', '2013-05-15', 30000.0, '2013-04-15 22:21:29', 32021.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['AMERICAN UBUNTU - a healing story for the USA', 'Narrative Film', 'Film & Video', 'USD', '2012-12-12', 30000.0, '2012-11-09 00:55:51', 30968.82, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['New Company - New Music Releases', 'Music', 'Music', 'USD', '2017-09-04', 5000.0, '2017-08-05 19:24:00', 22.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Coinsol - A wallet with unlimited card slots', 'Product Design', 'Design', 'HKD', '2017-01-31', 5000.0, '2016-12-22 15:03:28', 21200.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['DualCase - The Ultimate All-In-One Solution for your iPhone', 'Gadgets', 'Technology', 'CAD', '2017-03-30', 3000.0, '2017-02-28 08:25:39', 36072.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['MESA | The Ultimate Portable Light', 'Product Design', 'Design', 'USD', '2017-09-14', 35000.0, '2017-08-15 15:14:04', 41643.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['The GoBoat. Personal, Portable Watercraft', 'Product Design', 'Design', 'USD', '2016-06-02', 338000.0, '2016-04-28 13:51:52', 295014.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['animator.js', 'Web', 'Technology', 'USD', '2014-11-09', 25000.0, '2014-10-10 16:16:52', 75.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['HAYFIELDS', 'Comedy', 'Film & Video', 'GBP', '2017-10-10', 500.0, '2017-08-11 22:05:48', 590.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['The Mother, the Daughter, and the Museum', 'Painting', 'Art', 'USD', '2012-12-12', 2000.0, '2012-11-12 19:24:57', 2211.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Las Vegas Bikini Team Reality TV Show (Canceled)', 'Television', 'Film & Video', 'USD', '2015-07-18', 100000.0, '2015-06-18 04:03:53', 0.0, 'canceled']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['The Time Machine: a 3D Comic adaptation', 'Comics', 'Comics', 'USD', '2011-06-18', 3500.0, '2011-05-24 22:25:44', 30.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "[\"Trish McAleny's Debut Album\", 'Country & Folk', 'Music', 'USD', '2013-07-30', 7500.0, '2013-05-31 21:26:42', 176.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['\"Visiting & Understanding Canada for Yankees\" travel book', 'Nonfiction', 'Publishing', 'USD', '2014-01-19', 1000.0, '2013-12-20 05:33:55', 80.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Mybasin Personal Support App', 'Apps', 'Technology', 'USD', '2018-01-13', 7500.0, '2017-12-14 19:35:05', 10.0, 'live']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Pardon the Imperfection presents \"Beatrice\"', 'Shorts', 'Film & Video', 'USD', '2015-02-23', 1870.0, '2015-02-06 01:28:52', 1940.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['The Journey Home', 'Documentary', 'Film & Video', 'USD', '2010-12-10', 4000.0, '2010-09-21 04:44:59', 4000.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Rolling Out Arista Pasta', 'Food', 'Food', 'USD', '2013-12-02', 20000.0, '2013-11-01 05:17:37', 1775.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Cerevellum: The Future of Cycling Safety and Performance', 'Hardware', 'Technology', 'USD', '2013-12-14', 84000.0, '2013-11-14 16:17:30', 17269.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Gay-*sia: The Serpent Charmer', 'Photography', 'Photography', 'USD', '2011-04-22', 450.0, '2011-03-22 08:41:25', 0.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Studio Equipment to Bring You New Instrumentals', 'Music', 'Music', 'USD', '2017-02-11', 3000.0, '2017-01-12 05:25:56', 0.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Lo-Fi SES: Hackable 8-bit chiptunes instrument (Canceled)', 'Sound', 'Technology', 'USD', '2014-12-10', 5000.0, '2014-10-26 22:26:03', 27219.5, 'canceled']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['FITU - All For Breast Health/ Organic Customized Bra', 'Apparel', 'Fashion', 'SGD', '2017-11-15', 3000.0, '2017-10-25 16:53:20', 0.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "[\"Belle D'Amour Exquisite Lingerie, Girls Sleepwear & PAP\", 'Fashion', 'Fashion', 'USD', '2015-11-18', 28000.0, '2015-10-09 21:59:21', 0.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "[\"'5 Strangers'\", 'Theater', 'Theater', 'GBP', '2017-03-26', 1100.0, '2017-03-08 13:59:08', 1106.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Make It Like Messi - A Documented Online Series', 'Documentary', 'Film & Video', 'AUD', '2015-05-09', 1500.0, '2015-04-19 10:23:40', 680.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Andrew McIntosh // Hyenas in the Temples of Pleasure', 'Classical Music', 'Music', 'USD', '2014-02-09', 5200.0, '2014-01-16 17:16:54', 5570.01, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['original music album, merch and touring capital', 'Indie Rock', 'Music', 'USD', '2017-11-14', 1700.0, '2017-10-15 21:09:40', 0.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Born in Chicago the Documentary', 'Documentary', 'Film & Video', 'USD', '2014-11-07', 250000.0, '2014-09-23 16:06:14', 32941.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['The Seer: A Portrait of Wendell Berry', 'Documentary', 'Film & Video', 'USD', '2016-03-23', 40000.0, '2016-02-22 23:48:12', 52063.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Flying Critters: A Really Fun Game for Kids & Adults Too', 'Video Games', 'Games', 'USD', '2012-02-12', 1700.0, '2012-01-17 16:56:41', 326.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Fight School High School Chapter 1', 'Comic Books', 'Comics', 'USD', '2017-11-01', 800.0, '2017-10-01 15:51:36', 1244.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Course: Learn the Complete App Developing Process with Swift', 'Software', 'Technology', 'SEK', '2016-01-19', 5000.0, '2016-01-05 22:09:49', 0.0, 'canceled']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Dust Glyphs: The Book Project', 'Nonfiction', 'Publishing', 'USD', '2011-08-17', 7500.0, '2011-07-18 18:17:12', 7721.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Valhalla Mead: Pillage Responsibly', 'Drinks', 'Food', 'USD', '2014-09-15', 15000.0, '2014-08-16 05:19:51', 210.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Good Things Come to Those Who Wait', 'Jazz', 'Music', 'USD', '2010-12-10', 3000.0, '2010-11-11 22:31:58', 3402.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "[\"The Face Book - An Interactive Children's Book\", \"Children's Books\", 'Publishing', 'USD', '2014-08-08', 10000.0, '2014-07-18 13:38:32', 3765.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "[\"Phil Kay's Book: Auto-blography of a Master Storyteller...\", 'Nonfiction', 'Publishing', 'GBP', '2013-07-07', 3333.0, '2013-05-30 13:45:18', 5782.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Produce to the People: Community through Food', 'Food', 'Food', 'USD', '2010-09-29', 10000.0, '2010-07-31 00:19:56', 10223.04, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['The Internet Review of 2016', 'Periodicals', 'Publishing', 'USD', '2017-01-06', 3500.0, '2016-12-05 15:26:35', 14130.55, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Morf Music CD Worldwide', 'World Music', 'Music', 'GBP', '2017-05-30', 15000.0, '2017-04-30 01:44:56', 7070.0, 'canceled']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Homemade Chocolate In The RAW - Recipe Book!', 'Publishing', 'Publishing', 'USD', '2012-11-18', 1700.0, '2012-10-19 18:59:43', 2572.17, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['- FROM THE LOST DAYS - Silent Hill 15th Anniversary Film', 'Narrative Film', 'Film & Video', 'GBP', '2014-03-06', 6000.0, '2014-02-04 01:23:17', 254.65, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['\"SHOW ME THE HOFAX\" NEW HOFAX APP #hofax, #catfax, #cockfax,', 'Apps', 'Technology', 'USD', '2016-02-22', 2000.0, '2016-01-23 21:58:51', 40.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Dizmio Wallet: Slim, Small, Minimal - RFID Blocking Wallet', 'Product Design', 'Design', 'USD', '2013-05-18', 6000.0, '2013-04-10 01:45:01', 22856.26, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['ClubView', 'Technology', 'Technology', 'USD', '2016-04-18', 500000.0, '2016-03-04 20:27:55', 1.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Works on Paper 1990 through 2000', 'Art Books', 'Publishing', 'USD', '2015-10-11', 12000.0, '2015-09-11 20:43:32', 945.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Fall into Ruins', 'Illustration', 'Art', 'USD', '2017-02-15', 1000.0, '2017-01-16 19:38:07', 1394.13, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Plus Size And Beautiful Magazine (Canceled)', 'Young Adult', 'Publishing', 'USD', '2014-10-30', 3000.0, '2014-09-30 20:02:45', 0.0, 'canceled']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "[\"It's Gonna Blow!!! San Diego's Music Underground 1986-1996\", 'Documentary', 'Film & Video', 'USD', '2015-03-26', 8000.0, '2015-02-24 19:00:38', 9665.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Soul Train', 'Experimental', 'Film & Video', 'USD', '2015-07-05', 120000.0, '2015-06-05 01:57:19', 0.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['The Mysterious Couple (Canceled)', 'Fiction', 'Publishing', 'USD', '2014-09-20', 500.0, '2014-07-22 20:36:33', 0.0, 'canceled']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Destructive EP', 'Indie Rock', 'Music', 'USD', '2012-12-02', 3000.0, '2012-11-01 16:53:44', 815.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Man Hunt', 'Horror', 'Film & Video', 'USD', '2016-10-12', 40000.0, '2016-09-12 21:37:11', 0.0, 'canceled']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['The Lethal Operator kydex wallet series', 'Product Design', 'Design', 'USD', '2014-11-25', 2500.0, '2014-11-05 01:54:34', 175.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Nôrd by Nôrd - Sustainable Fashion', 'Accessories', 'Fashion', 'DKK', '2016-04-01', 60000.0, '2016-03-02 21:41:52', 5805.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['The Ladder 2013 Yearbook. Lights-ProMazda-USF2000 Racing', 'Photography', 'Photography', 'USD', '2014-01-20', 16000.0, '2013-12-23 20:21:20', 5070.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Beirut, Lebanon 1984', 'Photography', 'Photography', 'USD', '2011-05-28', 2500.0, '2011-04-13 06:49:38', 30.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Luxury sneakers and premium shoes at an affordable price.', 'Footwear', 'Fashion', 'USD', '2015-10-16', 15000.0, '2015-09-01 17:03:09', 135006.75, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Psychological Thriller- Short Film Production in Manchester', 'Thrillers', 'Film & Video', 'GBP', '2017-07-11', 1300.0, '2017-05-12 16:14:03', 185.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['[BRIC+]xtreme: ARMOR FOR YOUR IPHONE', 'Product Design', 'Design', 'USD', '2014-05-03', 25000.0, '2014-04-03 22:03:24', 26057.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Friend Funding a Firestarter before Kickstarter your project', 'Web', 'Technology', 'EUR', '2016-06-27', 5000.0, '2016-05-20 14:18:41', 44.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Sports Podcast', 'Audio', 'Journalism', 'USD', '2014-11-09', 1500.0, '2014-10-10 21:03:42', 46.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Pop! Apparel Co. • Super Rad Screen Printed Tees for All', 'Fashion', 'Fashion', 'USD', '2015-10-29', 1000.0, '2015-09-29 21:34:20', 366.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Minutiae', 'Shorts', 'Film & Video', 'USD', '2012-03-30', 1000.0, '2012-03-05 05:33:00', 1218.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "[\"Nerd's Domain is headed to Indy Pop Con\", 'Radio & Podcasts', 'Publishing', 'USD', '2014-03-15', 300.0, '2014-02-13 19:37:31', 462.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['The Get Hired Project - Get Real Careers', 'Film & Video', 'Film & Video', 'GBP', '2014-12-06', 10000.0, '2014-11-06 22:34:39', 1.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['One Per Person - An Animated Short Film', 'Animation', 'Film & Video', 'USD', '2012-10-18', 6000.0, '2012-09-18 22:23:52', 16263.63, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Saga Kingdoms', 'Video Games', 'Games', 'USD', '2012-11-09', 100000.0, '2012-10-02 06:03:29', 31240.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Gallery Meld-The Build Out', 'Mixed Media', 'Art', 'USD', '2013-07-16', 2500.0, '2013-06-25 20:34:58', 2870.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Air & Rollers; Equipping a Ceramic Studio', 'Sculpture', 'Art', 'USD', '2010-06-16', 1800.0, '2010-04-14 16:03:59', 63.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Free Day Popcorn Popping Ears: pop your popcorn on the ear', 'Farms', 'Food', 'USD', '2016-08-31', 6500.0, '2016-08-01 17:34:19', 1175.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['WHO GOES THERE?', 'Tabletop Games', 'Games', 'USD', '2017-08-09', 54097.0, '2017-07-10 16:59:56', 612776.17, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Allegiance: A Realm Divided (Canceled)', 'Tabletop Games', 'Games', 'CAD', '2013-10-24', 90000.0, '2013-09-23 21:57:15', 25974.0, 'canceled']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Home Gardens For Everyone', 'Food', 'Food', 'USD', '2010-07-10', 10000.0, '2010-06-12 06:10:40', 1260.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Fifty Pence and a Bowl of Soup (Debut Book)', 'Nonfiction', 'Publishing', 'GBP', '2017-10-31', 1440.0, '2017-09-01 23:20:31', 1520.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "[\"The Chef's Apprentice\", 'Cookbooks', 'Food', 'USD', '2014-06-08', 20000.0, '2014-05-09 06:13:48', 998.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Zero Hour: A zombie Mini-Series', 'Webseries', 'Film & Video', 'USD', '2013-04-26', 15000.0, '2013-03-12 01:35:45', 25.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Carbon - The Basis of Life', 'Video Games', 'Games', 'CAD', '2017-03-27', 6000.0, '2017-03-10 16:00:03', 72.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Moon and Sun: The Ellisa Sun Album', 'Music', 'Music', 'USD', '2016-10-14', 7000.0, '2016-09-14 18:01:30', 10385.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Rob Nance- New Album', 'Music', 'Music', 'USD', '2014-11-06', 4000.0, '2014-10-08 18:39:40', 4765.0, 'undefined']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['The Hidden Ark', 'Art', 'Art', 'USD', '2013-04-21', 1500000.0, '2013-02-20 23:00:34', 825.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['MAODAMORTA: Help get us forge some metal!', 'Metal', 'Music', 'USD', '2017-08-14', 4672.0, '2017-07-15 22:18:53', 275.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['On Tap Gastropub', 'Restaurants', 'Food', 'USD', '2015-03-31', 20000.0, '2015-03-24 13:24:25', 0.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['9/11 Dust: A Healing Journey', 'Documentary', 'Film & Video', 'USD', '2012-09-19', 1500.0, '2012-08-20 22:27:04', 1000.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['The Summer Soundtrack Record New Album This Fall!', 'Music', 'Music', 'USD', '2013-09-19', 10000.0, '2013-08-20 01:11:01', 10240.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['NosFURatu', 'Video Games', 'Games', 'USD', '2017-06-11', 5500.0, '2017-05-12 23:58:05', 45.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['The Young Hero', 'Young Adult', 'Publishing', 'USD', '2015-12-02', 3000.0, '2015-11-07 18:35:01', 0.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Love Me Not', 'Drama', 'Film & Video', 'USD', '2016-04-16', 500.0, '2016-03-17 19:19:37', 785.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Around the Next Bend: Rickshaw South', 'Documentary', 'Film & Video', 'CAD', '2015-06-25', 11000.0, '2015-05-24 06:15:19', 16500.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Live Give Love - New Single from Kebomusic', 'Country & Folk', 'Music', 'USD', '2010-12-23', 300.0, '2010-11-23 22:52:40', 0.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Centerpiece - an LED flower lights up your event', 'Product Design', 'Design', 'USD', '2015-05-25', 20000.0, '2015-04-15 17:30:55', 5602.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['JaiRo - Open Source x86 Router Platform', 'Software', 'Technology', 'USD', '2013-08-15', 50000.0, '2013-07-16 20:30:27', 12876.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['International Policy Digest', 'Web', 'Journalism', 'USD', '2014-12-20', 4000.0, '2014-10-21 19:35:59', 4034.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Historic Coon-Sanders Recording Project - Doug Bowles', 'Jazz', 'Music', 'USD', '2011-09-28', 20000.0, '2011-07-30 00:13:04', 3375.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Tampons for the 21st century. Chemical-free. 100% organic.', 'Product Design', 'Design', 'USD', '2017-04-07', 15000.0, '2017-02-21 09:01:37', 10449.0, 'canceled']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Scrumptious Sweets : A Cupcakery (Canceled)', 'Food', 'Food', 'USD', '2011-12-29', 5000.0, '2011-11-29 00:27:03', 20.0, 'canceled']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Gurunam Singh: Grace Of God Album', 'World Music', 'Music', 'USD', '2017-11-20', 18000.0, '2017-10-24 16:50:52', 21787.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['The Wolf: A Short Film', 'Shorts', 'Film & Video', 'USD', '2015-03-25', 550.0, '2015-02-23 08:23:24', 790.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Rogues, Gold, and Starships', 'Tabletop Games', 'Games', 'USD', '2014-08-18', 11.0, '2014-07-29 19:09:05', 15.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Anadolu Pop 2.0 (Canceled)', 'Electronic Music', 'Music', 'USD', '2015-12-31', 3000.0, '2015-11-02 12:02:45', 0.0, 'canceled']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['GOLD + GOLD + GOLD ++ WONDERFULL GOLD ART SCULPTURES', 'Sculpture', 'Art', 'EUR', '2017-02-06', 49.0, '2017-02-02 16:20:12', 0.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Legends of Fear', 'Video Games', 'Games', 'USD', '2015-09-01', 150.0, '2015-08-01 05:24:21', 0.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "[\"Bell's Master Blend Seasoning\", 'Restaurants', 'Food', 'USD', '2016-03-19', 7500.0, '2016-02-13 01:51:44', 91.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['A+ Smoodees...so much more than just a smoothie! (Canceled)', 'Vegan', 'Food', 'CAD', '2016-04-14', 5000.0, '2016-03-15 16:09:25', 20.0, 'canceled']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Ventila: A NEW VENTILATION FAN For Backpacks & More', 'Product Design', 'Design', 'HKD', '2017-11-01', 20000.0, '2017-09-13 06:43:32', 29734.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Steampunk Nixie Clock Series - 2nd Production - 3 Models', 'Product Design', 'Design', 'CAD', '2015-09-09', 7500.0, '2015-08-10 19:23:44', 0.0, 'canceled']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['The way politics should be', 'Web', 'Journalism', 'USD', '2015-07-20', 25000.0, '2015-06-10 20:37:29', 3068.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Jazz History: Method Book for Developing Jazz Guitarists', 'Jazz', 'Music', 'USD', '2013-07-08', 1000.0, '2013-06-08 19:30:22', 1606.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Evidence of Existence', 'Photography', 'Photography', 'USD', '2013-05-12', 800.0, '2013-04-22 23:58:49', 970.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Silver Dragon Tavern & Games', 'Tabletop Games', 'Games', 'USD', '2016-12-02', 5000.0, '2016-10-18 14:38:20', 5036.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Under the Hood: An Art book by Sean Gordon Murphy', 'Illustration', 'Art', 'USD', '2016-05-05', 10000.0, '2016-04-05 18:21:51', 76354.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['DOS - Denial of Service (text based hacking game)', 'Video Games', 'Games', 'GBP', '2013-04-19', 100000.0, '2013-03-05 22:52:51', 567.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Mechanaflux #2 - All-Ages Fantasy Comic Book', 'Comics', 'Comics', 'USD', '2013-10-13', 2500.0, '2013-09-13 18:48:00', 130.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['11 Year old Kids Talking Sports Show', 'Television', 'Film & Video', 'USD', '2016-09-05', 5575.0, '2016-08-06 01:21:47', 0.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Publishing My 1st Book!', 'Young Adult', 'Publishing', 'USD', '2016-11-30', 3500.0, '2016-10-01 00:18:43', 2.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['ERIC YOO NYC PROJECT', 'Events', 'Food', 'USD', '2015-04-03', 120.0, '2015-03-31 14:36:45', 120.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Getting into the studio to bring our music to the world.', 'Music', 'Music', 'USD', '2014-05-19', 5000.0, '2014-04-04 21:51:25', 0.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['New House Art Fence of Awesomeness', 'Installations', 'Art', 'USD', '2014-07-24', 100.0, '2014-07-09 05:11:39', 1.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Stefanie Keys, 2016 CD Release!!', 'Indie Rock', 'Music', 'USD', '2016-02-27', 8900.0, '2016-01-28 18:22:03', 9050.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Yuka wants to make her first CD', 'Music', 'Music', 'GBP', '2015-05-30', 2000.0, '2015-04-30 12:19:54', 41.0, 'undefined']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "[\"Smokin' Hot Box - Elevate Your Cooking (Canceled)\", 'Food', 'Food', 'AUD', '2014-03-07', 11000.0, '2014-02-04 02:19:39', 60.0, 'canceled']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['NFC Ring', 'Technology', 'Technology', 'GBP', '2013-08-19', 30000.0, '2013-07-20 14:30:42', 241947.14, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['jake joseph | Redefining Men’s Underwear', 'Fashion', 'Fashion', 'USD', '2014-02-20', 22000.0, '2014-01-21 15:00:30', 28515.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Crêpes Célestes - French Creperie - Crêpes & Macarons', 'Restaurants', 'Food', 'USD', '2015-09-01', 25000.0, '2015-07-03 08:44:49', 0.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Rants and Raves - An Adult Party Game for Scandalous People', 'Playing Cards', 'Games', 'USD', '2017-03-25', 15000.0, '2017-02-18 01:00:34', 3038.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Get FaulKing Addicted at FaulKing Wings N Waffles.', 'Food', 'Food', 'USD', '2013-03-29', 12000.0, '2013-01-28 23:57:03', 117.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "[\"Revolutionize the Workspace: It's Time to Get OFFyT\", 'Product Design', 'Design', 'USD', '2015-04-08', 85000.0, '2015-03-02 14:52:48', 309.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "[\"Global Affront's First US Tour (Canceled)\", 'Rock', 'Music', 'USD', '2013-08-01', 2500.0, '2013-06-03 19:48:05', 175.0, 'canceled']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['waste lights waste world (Canceled)', 'Installations', 'Art', 'EUR', '2014-11-10', 5000.0, '2014-10-09 19:10:42', 0.0, 'canceled']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Hannibal Season 4 Kickstarter (Canceled)', 'Film & Video', 'Film & Video', 'USD', '2015-08-22', 5000000.0, '2015-06-23 01:16:27', 150.0, 'canceled']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Eliza and the Organix, the debut album!', 'Indie Rock', 'Music', 'USD', '2012-03-16', 1200.0, '2012-01-16 17:17:07', 1245.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Stormweavers (Canceled)', 'Tabletop Games', 'Games', 'USD', '2015-08-29', 20000.0, '2015-07-25 01:01:25', 2866.0, 'canceled']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['While Waiting-for-Godot, the Webseries, Season 2', 'Webseries', 'Film & Video', 'USD', '2013-09-14', 3000.0, '2013-08-15 19:54:36', 3015.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Dragon Car', 'DIY Electronics', 'Technology', 'USD', '2016-05-16', 100000.0, '2016-04-16 18:27:25', 15.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Notes', 'R&B', 'Music', 'USD', '2015-08-11', 6000.0, '2015-07-14 07:10:39', 0.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['The Tilt - Release of our debut album \"HOWLIN\"', 'Music', 'Music', 'USD', '2012-11-18', 7600.0, '2012-10-19 20:32:50', 8905.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['The Year of the Song and What was Going On?', 'Film & Video', 'Film & Video', 'USD', '2014-08-10', 60000.0, '2014-07-01 00:44:47', 0.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['RUNECAST - A Game of Dice and Destiny. (Canceled)', 'Tabletop Games', 'Games', 'USD', '2014-12-18', 15000.0, '2014-11-17 13:48:17', 4440.0, 'canceled']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Jellyfish gives keys to Cricketbows!', 'Indie Rock', 'Music', 'USD', '2011-07-16', 1500.0, '2011-07-01 06:02:29', 515.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['1940BUNNY \"Celebrating Women Fest\" Film', 'Festivals', 'Film & Video', 'USD', '2016-02-10', 50000.0, '2016-01-11 03:27:54', 26.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Couchsurfing 48 States', 'Journalism', 'Journalism', 'USD', '2010-10-10', 3250.0, '2010-09-04 06:52:44', 0.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Blessr', 'Graphic Design', 'Design', 'USD', '2015-09-10', 20000.0, '2015-08-11 04:53:42', 0.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Table No. 2: Bring your office to your throne!', 'Product Design', 'Design', 'USD', '2013-10-21', 3750.0, '2013-09-26 03:18:05', 150.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Ethereal \"Most Evil Tour\" Campaign', 'Metal', 'Music', 'GBP', '2015-11-20', 100.0, '2015-11-06 20:46:45', 27.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Lobby Zombies! - Magnets for Your Fridge (Canceled)', 'Illustration', 'Art', 'USD', '2016-04-15', 400.0, '2016-03-14 16:09:55', 421.0, 'canceled']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['LBDLPC - UNIQUE AUDIO ||NORRYB MEDIA MUSIC|| (10TRACK ALBUM)', 'World Music', 'Music', 'USD', '2016-09-01', 750.0, '2016-07-26 00:54:23', 0.0, 'canceled']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "[\"Amanda Pearcy's Second CD\", 'Country & Folk', 'Music', 'USD', '2012-10-19', 7300.0, '2012-09-19 04:28:05', 8015.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Air Powered Generator (Canceled)', 'Gadgets', 'Technology', 'USD', '2015-03-19', 25000.0, '2015-02-17 22:39:28', 0.0, 'canceled']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['CAT sculpture. Laser cut acrylic with personal engraving.', 'Design', 'Design', 'USD', '2012-05-25', 200.0, '2012-04-25 23:32:16', 640.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Art of Cool Festival: A Celebration of Music, Food and Fun', 'Music', 'Music', 'USD', '2013-08-06', 25000.0, '2013-06-30 00:27:54', 27499.45, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Concrete Barrier and Guard Rail Rubber Safety Covers', 'Product Design', 'Design', 'USD', '2014-12-19', 150000.0, '2014-11-12 22:16:55', 105.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['FREAKS - Playing Cards and Biography Deck', 'Tabletop Games', 'Games', 'USD', '2014-03-12', 5000.0, '2014-02-10 21:50:54', 883.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['The Barrel Room Restaurant & Tavern', 'Restaurants', 'Food', 'USD', '2015-02-22', 5000.0, '2015-01-23 21:09:13', 930.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "[\"BOBBY MESSANO'S NEW TOUR SUPPORT PACKAGE\", 'Music', 'Music', 'USD', '2010-10-15', 1000.0, '2010-10-05 19:16:13', 1690.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Help Burgundy Grey Get To Ohio', 'Music', 'Music', 'USD', '2017-10-01', 3730.0, '2017-08-15 20:53:45', 12.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['The QDC Mini Pen with Quick DisConnect Cap', 'Product Design', 'Design', 'USD', '2014-11-07', 7500.0, '2014-10-08 16:03:51', 14926.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "[\"What's Poppin Gourmet Popcorn & Sweets\", 'Food', 'Food', 'USD', '2015-09-18', 17000.0, '2015-07-21 19:51:44', 725.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "[\"Drawing A Blank: SAGU Cinema's first feature length film\", 'Film & Video', 'Film & Video', 'USD', '2015-03-14', 4000.0, '2015-02-09 22:40:16', 4300.0, 'undefined']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Axios Bee Works', 'Food', 'Food', 'USD', '2017-04-08', 2000.0, '2017-03-18 23:32:14', 575.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Password Reset Key', 'Technology', 'Technology', 'GBP', '2014-02-03', 1000.0, '2014-01-04 01:49:43', 34147.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Swimming Cities India 2011: BRING US HOME!!', 'Sculpture', 'Art', 'USD', '2011-11-05', 6600.0, '2011-09-26 17:31:04', 7150.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['BATTLE ROOM', 'Tabletop Games', 'Games', 'EUR', '2017-04-15', 16000.0, '2017-03-06 20:15:41', 315.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['ME IN FRONT OF ALL AUSSIE BIG THINGS', 'Photography', 'Photography', 'AUD', '2014-12-24', 5000.0, '2014-12-19 00:58:58', 0.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Duct and Cover: Wallets, Bags, Bow Ties and more!!!', 'Crafts', 'Crafts', 'USD', '2013-09-11', 500.0, '2013-08-11 06:59:03', 500.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Disambiguation - An Independant Drama', 'Narrative Film', 'Film & Video', 'GBP', '2016-12-17', 1000.0, '2016-11-17 22:35:13', 1015.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['\"She Who Imagines, Becomes.\"--Sydney Lofton', 'Fashion', 'Fashion', 'USD', '2017-01-23', 1200.0, '2016-12-24 13:18:59', 1315.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Fruition Productions Presents: Watermyth, by Katherine Jett.', 'Theater', 'Theater', 'USD', '2012-06-30', 3500.0, '2012-06-09 03:12:43', 3566.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['T-shirts and Hoodies That Push The Boundaries of Fashion', 'Apparel', 'Fashion', 'GBP', '2016-02-15', 10000.0, '2016-01-11 01:02:40', 840.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['The Comedy Project', 'Webseries', 'Film & Video', 'USD', '2011-09-30', 2000.0, '2011-08-30 02:37:18', 2012.69, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['THE BETTER HALF: a dance/theater collaboration', 'Dance', 'Dance', 'USD', '2011-06-16', 5000.0, '2011-05-11 08:21:25', 5154.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['ZAHA HADID | Graphic Space - Vol.1', 'Illustration', 'Art', 'GBP', '2016-02-03', 11340.0, '2016-01-20 00:29:56', 45.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['OkadaBooks: A Website For Story Lovers & Writers', 'Publishing', 'Publishing', 'USD', '2017-07-28', 20000.0, '2017-06-28 22:17:53', 4091.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['2003 Eponymus Debut Album Reissue', 'Music', 'Music', 'GBP', '2013-12-11', 250.0, '2013-11-27 21:45:10', 305.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Día de los Muertos PHX Festival', 'Performance Art', 'Art', 'USD', '2013-10-18', 6000.0, '2013-09-18 18:03:25', 6566.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Forward Base: Sci-fi Scenery for Infinity Wargamers', 'Tabletop Games', 'Games', 'GBP', '2014-11-30', 3700.0, '2014-11-17 21:00:09', 85961.3, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['on demand home service', 'Technology', 'Technology', 'AUD', '2015-12-07', 70000.0, '2015-11-07 03:13:45', 0.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Crown Him King', 'Music', 'Music', 'USD', '2014-08-29', 10000.0, '2014-07-30 23:29:01', 10057.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Handmade by Henry Leather Cardholders', 'Design', 'Design', 'GBP', '2017-05-11', 300.0, '2017-04-11 16:01:29', 45.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['The Temple of Grace', 'Art', 'Art', 'USD', '2014-08-07', 40000.0, '2014-07-08 05:46:36', 51945.22, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Flash Forward', 'Photography', 'Photography', 'GBP', '2015-10-25', 5000.0, '2015-09-21 19:32:50', 0.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['The world is beautiful through a lens', 'Photography', 'Photography', 'USD', '2015-08-10', 500.0, '2015-07-21 01:25:16', 0.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['New Jace Pawlak album: Perspective.', 'Music', 'Music', 'USD', '2014-10-20', 2900.0, '2014-09-19 00:47:19', 6747.88, 'undefined']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['IV Elements Paracord (Canceled)', 'Weaving', 'Crafts', 'USD', '2015-10-24', 2500.0, '2015-09-24 22:34:28', 145.0, 'canceled']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['CANNED HAM Starring Tom Judson', 'Theater', 'Theater', 'USD', '2009-10-30', 3500.0, '2009-09-28 16:20:24', 3850.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Use PayLive to get paid-per-time. Like a time-metered PayPal', 'Web', 'Technology', 'USD', '2017-05-08', 10000.0, '2017-04-03 23:42:49', 10423.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['AMERICAN JESUS - A meditation on guilt (Canceled)', 'Narrative Film', 'Film & Video', 'USD', '2011-04-06', 4000.0, '2011-02-05 18:09:34', 0.0, 'canceled']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['The Road to Athabasca', 'Video', 'Journalism', 'USD', '2015-08-13', 5605.0, '2015-07-22 02:32:15', 5874.02, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['LA ETERNA. Café bar - Ensayos', 'Spaces', 'Food', 'USD', '2017-07-26', 50000.0, '2017-05-27 23:41:18', 0.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Dusty Revenge: The Art of Revenge (A 150 Page Artbook)', 'Art Books', 'Publishing', 'USD', '2013-05-24', 12000.0, '2013-04-24 06:09:41', 3932.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Ex illis', 'Tabletop Games', 'Games', 'CAD', '2013-12-06', 50000.0, '2013-11-06 15:51:01', 14323.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Mississippi Queen Pedalboat', 'Technology', 'Technology', 'USD', '2015-05-01', 35000.0, '2015-04-01 06:24:58', 15.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Wire Wonder - Say Goodbye to Messy Cables', 'Product Design', 'Design', 'USD', '2017-12-03', 50000.0, '2017-11-03 05:00:33', 3757.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "[\"The Bee in Grandpa's Barn\", \"Children's Books\", 'Publishing', 'USD', '2014-09-24', 4888.0, '2014-08-25 15:26:23', 0.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['GUT PILE Hunting Card Game (Canceled)', 'Tabletop Games', 'Games', 'USD', '2015-09-25', 20000.0, '2015-08-26 04:04:28', 7416.0, 'canceled']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Would like to create posters to sell once again', 'Illustration', 'Art', 'USD', '2014-09-10', 500.0, '2014-08-11 19:05:58', 600.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['B9Creator - A High Resolution 3D Printer', 'Hardware', 'Technology', 'USD', '2012-06-12', 50000.0, '2012-05-10 07:24:52', 513422.57, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Makerlab 3D', '3D Printing', 'Technology', 'EUR', '2014-12-15', 2500.0, '2014-11-15 13:19:23', 0.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Offerings - A New EP by Tsinder Ash', 'Music', 'Music', 'GBP', '2017-04-07', 500.0, '2017-03-22 18:16:36', 532.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Built for Collapse in 2015: Europe, the U.S. and the stars!', 'Experimental', 'Theater', 'USD', '2015-06-01', 8500.0, '2015-05-02 14:44:59', 8648.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "[\"My Father's People\", 'Documentary', 'Film & Video', 'USD', '2010-07-17', 11000.0, '2010-06-11 03:10:50', 395.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['\"Circe De-Cision: A Tribute to Monty Python\", A Benefit for Cacophony Productions', 'Theater', 'Theater', 'USD', '2010-06-21', 5000.0, '2010-05-13 22:12:58', 0.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['The Killing Seasons -- Documentary Film', 'Documentary', 'Film & Video', 'USD', '2011-01-23', 6000.0, '2010-12-24 21:23:04', 13180.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['The Illustrated Assassination of Abraham Lincoln', 'Nonfiction', 'Publishing', 'USD', '2015-02-26', 1000.0, '2015-02-04 04:25:38', 1340.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Unanimous Craft: Reporting on CHA Conference and Trade Show', 'Journalism', 'Journalism', 'USD', '2011-02-05', 500.0, '2011-01-21 23:08:19', 640.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['meshable chrono - a contemporary two in one watch (Canceled)', 'Product Design', 'Design', 'EUR', '2015-07-28', 28000.0, '2015-06-25 17:01:07', 2830.0, 'canceled']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Bandits 500 series: The Development', 'Fashion', 'Fashion', 'USD', '2014-01-04', 20000.0, '2013-12-05 17:24:01', 0.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "[\"Programme en ligne l'art du mouvement\", 'Television', 'Film & Video', 'CAD', '2017-06-14', 15000.0, '2017-05-15 18:39:30', 26518.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Green Machine Food Truck, a part of Forward Mobility', 'Food Trucks', 'Food', 'USD', '2014-08-07', 55000.0, '2014-07-08 23:39:40', 5929.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Scandic Footwear - Exceptional Handcrafted Clogs', 'Footwear', 'Fashion', 'USD', '2017-02-16', 20000.0, '2017-01-17 22:48:14', 3111.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Semper Fi: Our Family Story', 'Documentary', 'Film & Video', 'USD', '2012-03-30', 60000.0, '2012-01-30 20:28:45', 110.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Help to BLOOM BloomLily Soap Co.', 'DIY', 'Crafts', 'USD', '2015-10-29', 300.0, '2015-09-29 03:32:08', 450.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Mercy and Truth Mosaic Project (Canceled)', 'Public Art', 'Art', 'USD', '2015-05-26', 2000.0, '2015-05-01 06:22:25', 2075.0, 'canceled']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Condemned, Redeemed, & Forgiven', 'Hip-Hop', 'Music', 'USD', '2012-10-08', 1000.0, '2012-08-19 05:15:41', 87.01, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['AtomicLED GM Platinum Series LED Truck Lights', 'Technology', 'Technology', 'USD', '2017-08-18', 25000.0, '2017-07-19 00:42:21', 1995.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Huddersfield Photography Graduate Show 2016', 'Photography', 'Photography', 'GBP', '2016-05-05', 120.0, '2016-04-22 14:58:50', 175.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Rubicon Big 50, Aviation inspired Automatic Watches', 'Product Design', 'Design', 'USD', '2014-03-19', 50000.0, '2014-02-12 18:37:44', 66081.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['East Lake Gear Exchange Guitar Art Project', 'Mixed Media', 'Art', 'USD', '2013-06-15', 5000.0, '2013-05-01 21:45:28', 20.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Missed Connections- A short film', 'Shorts', 'Film & Video', 'USD', '2012-07-26', 1500.0, '2012-06-26 06:33:14', 495.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['The Greatest American Hero', 'Action', 'Film & Video', 'EUR', '2017-03-12', 1500000.0, '2017-01-11 15:45:21', 1.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Debut Solo Album and National Tour', 'Indie Rock', 'Music', 'USD', '2013-05-06', 5000.0, '2013-03-07 00:29:03', 5020.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['The Sub-Sonarium', 'Public Art', 'Art', 'USD', '2012-07-09', 3000.0, '2012-06-09 08:55:56', 3120.85, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['The Travesty In The Ethiopian Refugee Camps', 'Photobooks', 'Photography', 'USD', '2014-07-16', 60000.0, '2014-06-01 20:45:22', 637.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "[\"Indulge Cock and Bull's Voolf\", 'Experimental', 'Theater', 'USD', '2014-01-07', 2900.0, '2013-12-17 23:34:33', 2985.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['LEAP 4 Children Computer and Reading/Math Lab Hub', 'Technology', 'Technology', 'USD', '2016-08-04', 50000.0, '2016-07-06 02:34:03', 0.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Kalevala, Land of Heroes - Arteles Center Artist Residency', 'Art', 'Art', 'USD', '2013-06-08', 1700.0, '2013-05-09 19:13:19', 2491.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['The Pass it On Project', 'Documentary', 'Film & Video', 'USD', '2009-12-12', 2700.0, '2009-09-14 17:11:41', 2850.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['ATLANTIS: TEN TRIBES OF THE AMERICAS', 'Nonfiction', 'Publishing', 'USD', '2012-10-08', 3000.0, '2012-08-09 22:07:16', 55.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['The Breaks Season 1.5 (Episodes 4-9)', 'Webseries', 'Film & Video', 'USD', '2014-04-15', 4000.0, '2014-03-14 21:56:54', 5782.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Kelvin Cummings debut Country Music Album', 'Country & Folk', 'Music', 'NZD', '2016-09-08', 5000.0, '2016-08-09 05:40:15', 5011.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Ganjanapoli: Automatic for the pigeon', 'Puzzles', 'Games', 'GBP', '2015-10-16', 14.0, '2015-09-16 19:12:31', 20.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "[\"Finding Your Inner Peace: My Struggle With Asperger's\", 'Documentary', 'Film & Video', 'USD', '2016-02-18', 360000.0, '2016-01-19 20:24:04', 0.0, 'canceled']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['It Was Metal: New Album, EP, Graphic Novel & Animation', 'Metal', 'Music', 'USD', '2017-11-14', 30000.0, '2017-09-22 16:01:37', 66246.76, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Petrichor Alternative Wear', 'Fashion', 'Fashion', 'USD', '2012-10-01', 150.0, '2012-08-18 00:12:54', 205.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['An original song, \"By Your Side\", Music campaign', 'Pop', 'Music', 'USD', '2014-03-23', 15000.0, '2014-02-21 21:05:37', 16.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['TEAM SISTERSHIP 2017 R2AK', 'Live Games', 'Games', 'USD', '2017-04-23', 2500.0, '2017-03-15 21:42:26', 550.0, 'canceled']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Me by CnC', 'Fashion', 'Fashion', 'USD', '2017-12-08', 3500.0, '2017-10-09 07:04:46', 113.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Now You See Them Release Their First Full-Length Album!', 'Music', 'Music', 'USD', '2011-12-21', 10000.0, '2011-11-17 18:25:39', 10647.27, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Custom Shaped Chocolates by piq Chocolates', 'Food', 'Food', 'USD', '2013-11-11', 25000.0, '2013-09-27 21:42:13', 26060.37, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['The Tour Fund', 'Rock', 'Music', 'USD', '2012-11-29', 5000.0, '2012-10-30 17:17:33', 1115.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['THUNDER ROAD - Feature Film (Canceled)', 'Narrative Film', 'Film & Video', 'USD', '2013-09-12', 750000.0, '2013-07-31 15:01:42', 183072.0, 'canceled']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Manmaker', 'Comedy', 'Film & Video', 'USD', '2015-02-17', 2200.0, '2015-01-22 13:42:47', 2306.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Kannabis Medical Magazine', 'Publishing', 'Publishing', 'USD', '2017-01-02', 5000.0, '2016-12-03 22:43:33', 0.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['ZooFest Music and Art Festival (Canceled)', 'Performance Art', 'Art', 'USD', '2014-04-20', 3500.0, '2014-03-14 22:34:38', 230.0, 'canceled']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Natasha Thorogood Jewellery', 'Crafts', 'Crafts', 'GBP', '2013-02-14', 5000.0, '2013-02-04 12:03:04', 249.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Cthulhu Secret IDOL', 'Product Design', 'Design', 'GBP', '2014-01-23', 1800.0, '2014-01-13 17:16:28', 8020.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Live the Dream, traveling to and working art fairs in Texas.', 'Art', 'Art', 'USD', '2015-04-03', 2500.0, '2015-03-03 19:20:35', 88.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Jesse Campbell Music Project', 'Music', 'Music', 'USD', '2012-07-29', 50000.0, '2012-06-28 02:27:56', 20763.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Modern Times- A Graphic Commentary', 'Zines', 'Publishing', 'GBP', '2014-06-13', 1000.0, '2014-05-14 18:36:32', 1011.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['THE STUDENT BODY', 'Documentary', 'Film & Video', 'USD', '2014-04-28', 28000.0, '2014-03-23 06:47:00', 15544.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['CLOVESA Creation Station', 'Product Design', 'Design', 'USD', '2014-06-01', 207000.0, '2014-05-01 21:41:02', 1727.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Brea & The Bakery: Cakery (Canceled)', 'Restaurants', 'Food', 'USD', '2015-12-22', 10000.0, '2015-11-22 07:06:51', 150.0, 'canceled']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Isosceles/46', 'Product Design', 'Design', 'GBP', '2014-09-12', 11000.0, '2014-08-13 22:24:24', 11072.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Chasing Stars', 'Fiction', 'Publishing', 'USD', '2017-03-05', 2000.0, '2017-02-05 20:13:11', 100.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Customisable Pocket Organiser Wallet by SUB LABEL', 'Product Design', 'Design', 'SGD', '2017-08-21', 1500.0, '2017-07-28 19:23:22', 1673.0, 'canceled']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Lakes & Rivers \"Beginner\\'s Luck\"', 'Rock', 'Music', 'CAD', '2015-04-30', 2500.0, '2015-03-14 05:02:02', 2527.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['New Business in publishing printing books', 'Print', 'Journalism', 'USD', '2017-09-26', 5000.0, '2017-07-28 18:15:10', 2.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Global Parcel Delivery End-to-end to your Doorstep !', 'Apps', 'Technology', 'EUR', '2016-11-27', 100000.0, '2016-10-28 19:37:48', 101.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "[\"An Amateur's Cosmological Theory of Everything (Canceled)\", 'Publishing', 'Publishing', 'USD', '2012-08-24', 500.0, '2012-07-21 17:06:03', 10.0, 'canceled']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Solar Power for a colorfully-animated LED Beacon installation at Burning Man', 'Digital Art', 'Art', 'USD', '2010-07-22', 530.0, '2010-06-22 19:20:12', 550.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Words Are Power, a feminist PC & Mac word game (Canceled)', 'Video Games', 'Games', 'CAD', '2014-12-04', 40000.0, '2014-11-03 14:18:41', 8426.0, 'canceled']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Glenmount Home', 'Product Design', 'Design', 'GBP', '2015-09-17', 3000.0, '2015-08-18 20:44:40', 22.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "[\"I'm growing tomatoes\", 'Small Batch', 'Food', 'USD', '2014-08-07', 50.0, '2014-07-08 08:38:50', 52.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Beethovenyear Phase 1', 'Classical Music', 'Music', 'USD', '2013-03-29', 400.0, '2013-03-15 16:21:52', 936.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Will Roberts Weekly Telegram Film Shorts Season 1', 'Film & Video', 'Film & Video', 'USD', '2013-07-04', 5000.0, '2013-06-07 16:31:23', 205.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['THE BARN LIGHT Interior Design', 'Food', 'Food', 'USD', '2012-09-19', 15000.0, '2012-08-20 21:05:01', 15123.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Greening the Beige', 'Art', 'Art', 'USD', '2010-12-20', 3000.0, '2010-11-11 23:14:55', 590.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Geeky handmade gifts and craft supplies by The Felted Duck', 'Crafts', 'Crafts', 'GBP', '2016-05-12', 150.0, '2016-04-12 15:58:44', 277.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['\"Hallelujah Anyhow\"... Let\\'s Share the Story', 'Nonfiction', 'Publishing', 'USD', '2011-06-07', 2500.0, '2011-04-23 02:36:58', 100.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Fractured Starlight', 'Fiction', 'Publishing', 'USD', '2016-03-20', 500.0, '2016-02-19 21:41:41', 737.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Bringing sweet joy to the world one candy at a time', 'Food', 'Food', 'USD', '2016-04-08', 4000.0, '2016-03-10 01:28:54', 563.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['The HangUpMachine: a SPAM filter for your phone', 'Software', 'Technology', 'USD', '2014-05-20', 37500.0, '2014-04-20 19:17:27', 1032.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['A Little Erotic Adventure', 'Fiction', 'Publishing', 'USD', '2014-12-18', 100.0, '2014-11-18 03:27:17', 234.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Project race car build', 'Design', 'Design', 'USD', '2014-10-16', 15000.0, '2014-09-16 23:28:54', 6.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "[\"CTHULHU TALKING BOARD: Whispers from R'lyeh\", 'Tabletop Games', 'Games', 'GBP', '2014-09-04', 8000.0, '2014-08-06 22:26:45', 5640.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['PhotoToCalorieApp', 'Technology', 'Technology', 'CHF', '2015-10-07', 25000.0, '2015-09-07 10:04:43', 4.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Cherryblossom Cupcakes UK', 'Food', 'Food', 'GBP', '2016-08-14', 1000.0, '2016-07-15 10:39:07', 41.0, 'canceled']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "[\"Pre-order the 2nd AJJPS album ''Men of Venus''\", 'Music', 'Music', 'GBP', '2016-01-07', 5000.0, '2015-12-08 19:34:25', 0.0, 'undefined']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Seven Summits Quest Volume 5 - South America', 'Nonfiction', 'Publishing', 'USD', '2014-12-31', 12500.0, '2014-12-10 17:30:28', 4.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['\"Gypsy Bells\" on Vinyl', 'Indie Rock', 'Music', 'USD', '2013-09-12', 1300.0, '2013-08-13 00:03:59', 1914.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Uhr / Watch \"Zeit-Basis\" - Unikat-Uhrenbau in Kleinserie', 'Product Design', 'Design', 'EUR', '2016-01-24', 7995.0, '2015-12-17 12:13:51', 121.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Look My Books!', \"Children's Books\", 'Publishing', 'USD', '2016-08-25', 5000.0, '2016-07-31 00:03:46', 10.0, 'canceled']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Forbidden Doors - The Movie', 'Thrillers', 'Film & Video', 'USD', '2014-11-17', 400000.0, '2014-10-16 03:33:07', 10772.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['The Pool is a pop-up theater company', 'Plays', 'Theater', 'USD', '2017-09-09', 25000.0, '2017-08-15 21:17:05', 26400.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['\"ANDON\" A Stop Motion short about self discovery amidst ruin', 'Art', 'Art', 'USD', '2011-04-21', 5000.0, '2011-02-09 19:29:13', 3.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Reality Tokens & Collectible Treasure Box', 'Gaming Hardware', 'Games', 'NZD', '2016-09-01', 888.0, '2016-08-02 02:53:06', 632.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Vicious Crucible 3: Argentate Drift', 'Tabletop Games', 'Games', 'USD', '2013-01-07', 2000.0, '2012-12-04 16:07:24', 2493.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['TIDY-KEY KEY ORGANIZER / KEY HOLDER / KEY CASE / CAGE', 'Product Design', 'Design', 'EUR', '2016-03-25', 900.0, '2016-02-24 16:04:09', 943.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['\"LOVELINE\" Watercamping - Build your own boat in 14 days', 'DIY', 'Crafts', 'DKK', '2016-07-15', 60000.0, '2016-06-15 17:28:28', 1130.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Eli Pafumi // Debut EP', 'Music', 'Music', 'USD', '2015-07-24', 3500.0, '2015-06-24 21:56:17', 4060.62, 'undefined']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "[\"Rose's Pawn Shop's First UK & Ireland Tour\", 'Country & Folk', 'Music', 'USD', '2012-12-31', 4000.0, '2012-12-06 17:52:26', 5701.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Fresh Data: local food, global network', 'Apps', 'Technology', 'USD', '2015-06-02', 30000.0, '2015-04-18 21:32:36', 4892.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Briefettes™ Underwear: Designer Boxer Briefs for Women', 'Apparel', 'Fashion', 'USD', '2016-06-12', 27500.0, '2016-05-13 08:22:26', 3442.0, 'canceled']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Bonnyclabber Cheese Co. More Cheese Please!', 'Food', 'Food', 'USD', '2012-11-07', 15000.0, '2012-10-08 16:36:11', 7011.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "[\"Kharon's Crypt - Even Death May Die\", 'Video Games', 'Games', 'EUR', '2017-10-26', 4200.0, '2017-09-26 21:29:40', 13886.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "[\"Let's take care of OUR PLANET\", 'Food', 'Food', 'EUR', '2017-06-03', 10000.0, '2017-04-04 12:51:07', 1137.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "[\"Sure it's Couture Children's Fashion\", 'Childrenswear', 'Fashion', 'GBP', '2015-04-23', 4000.0, '2015-03-24 22:26:22', 0.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Eldritch Skies (Savage Worlds Edition)', 'Tabletop Games', 'Games', 'USD', '2014-01-31', 4000.0, '2014-01-01 17:08:28', 5597.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Angel in West Africa: My Experience in Art', 'Mixed Media', 'Art', 'USD', '2011-11-09', 1800.0, '2011-10-19 23:59:21', 1800.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Shake Off the World', 'Family', 'Film & Video', 'USD', '2014-12-29', 9999.0, '2014-10-30 08:13:52', 16580.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['A delicate tribute to the out-of-circulation Canadian cent', 'Crafts', 'Crafts', 'CAD', '2014-12-31', 36000.0, '2014-12-01 18:04:48', 94.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Baby Bounce: National Pride Wear for Babies', 'Childrenswear', 'Fashion', 'CAD', '2014-05-27', 25000.0, '2014-04-19 05:18:28', 1187.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Human Behavior Predictive Model', 'Software', 'Technology', 'USD', '2017-02-02', 10000.0, '2017-01-03 23:18:22', 0.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['The Beast', 'Horror', 'Film & Video', 'EUR', '2017-09-15', 20000.0, '2017-08-11 18:15:33', 315.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['WIK LED Lightning Cable for iPhone LIFETIME WARRANTY', 'Hardware', 'Technology', 'USD', '2015-10-11', 3000.0, '2015-09-20 16:59:52', 37087.34, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['FLEXUP - Digital Mobile Headphone Amplifier Redefined', 'Gadgets', 'Technology', 'EUR', '2015-12-23', 90000.0, '2015-11-23 18:01:59', 3561.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Twin Bed', 'Family', 'Film & Video', 'USD', '2015-01-15', 3500.0, '2014-12-16 20:21:57', 3546.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['My Journey Through Life', 'Photography', 'Photography', 'USD', '2014-10-11', 500.0, '2014-08-12 01:37:48', 0.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['ANCHOR CABLE - Last cable you will ever need.', 'Technology', 'Technology', 'GBP', '2017-07-31', 50000.0, '2017-06-01 18:09:40', 15070.0, 'canceled']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "[\"Sudoku Nomad: World's Largest 2800 Puzzle Adventure\", 'Publishing', 'Publishing', 'USD', '2015-05-08', 750.0, '2015-04-18 00:55:06', 449.69, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Next Junction Edinburgh', 'Documentary', 'Film & Video', 'GBP', '2013-09-05', 1000.0, '2013-07-25 18:52:12', 340.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Manic Bloom Is Recording An Epic New Album', 'Rock', 'Music', 'USD', '2012-07-26', 15000.0, '2012-06-26 02:37:42', 16683.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['AstroNuts Kids Space Club telescope fundraiser', 'Space Exploration', 'Technology', 'CAD', '2015-04-13', 2000.0, '2015-02-14 00:43:57', 2516.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Orange Sessions: Lucie ? A Second Sun', 'Design', 'Design', 'USD', '2015-07-06', 12000.0, '2015-06-01 18:27:03', 1366.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Dragon Ball Done Right - The Live Action Web Series [Read!]', 'Film & Video', 'Film & Video', 'USD', '2013-03-24', 500.0, '2013-01-23 05:38:41', 510.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Aspiring Music Producer Garrett9090', 'Electronic Music', 'Music', 'USD', '2015-05-01', 2500.0, '2015-03-17 19:39:11', 1.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['CECY B MUSIC TO BENEFIT PROJECT (Canceled)', 'Hip-Hop', 'Music', 'USD', '2012-05-11', 5000.0, '2012-04-11 06:41:47', 155.0, 'canceled']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Indie iPhone Game - Mir|riM', 'Video Games', 'Games', 'USD', '2011-08-25', 750.0, '2011-07-26 04:14:42', 125.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "[\"A couple uh' Guys Podcast\", 'Radio & Podcasts', 'Publishing', 'CAD', '2014-08-24', 200.0, '2014-07-25 21:22:52', 0.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['May All Your Dreams Come True - purple neon text', 'Art', 'Art', 'USD', '2010-07-10', 1500.0, '2010-05-22 18:37:54', 10.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Memories', 'Video Games', 'Games', 'GBP', '2018-01-27', 53.0, '2017-12-18 14:09:01', 116.0, 'live']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Teddy Bears for Kids', 'Crafts', 'Crafts', 'USD', '2017-10-06', 4500.0, '2017-09-06 22:02:55', 350.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Worldchanging 101: Challenging the Myth of Powerlessness', 'Nonfiction', 'Publishing', 'USD', '2014-05-26', 18800.0, '2014-04-24 14:02:26', 21165.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Hiking Pack Slings- in time for Christmas', 'Product Design', 'Design', 'USD', '2017-12-08', 500.0, '2017-11-16 19:30:55', 663.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['In The End: What Matters Most', 'Nonfiction', 'Publishing', 'USD', '2013-02-23', 11100.0, '2013-01-24 04:17:16', 165.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['TruSlope: A golf ball marker that reads the green for you!!', 'Gadgets', 'Technology', 'USD', '2016-05-22', 25000.0, '2016-04-07 17:00:37', 3552.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Dizzlike! In Your Face-Book Game', 'Games', 'Games', 'USD', '2013-01-27', 90000.0, '2012-12-25 21:19:37', 600.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Bad Apples (Canceled)', 'Playing Cards', 'Games', 'CAD', '2016-03-11', 7700.0, '2016-02-09 20:21:16', 185.0, 'canceled']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Help me change the world.', 'Performance Art', 'Art', 'USD', '2016-09-03', 1500.0, '2016-07-20 23:19:14', 1515.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Concept Apparel', 'Apparel', 'Fashion', 'GBP', '2016-01-02', 1500.0, '2015-12-03 23:43:28', 1505.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "[\"we're bringin PICKLE BACK. {yeah!}\", 'Small Batch', 'Food', 'USD', '2014-08-05', 12000.0, '2014-07-16 16:22:23', 20583.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "[\"Put 'Prologue II' on the Record with FarFetched\", 'Music', 'Music', 'USD', '2012-11-30', 5000.0, '2012-10-31 14:37:43', 478.33, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['ANDY-O', 'Shorts', 'Film & Video', 'MXN', '2017-11-25', 50000.0, '2017-10-26 19:35:51', 53000.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['HONEST PICKS A search engine that creates informed buyers.', 'Web', 'Technology', 'USD', '2017-12-05', 36000.0, '2017-11-05 03:09:39', 911.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Magical PennyGems', 'Tabletop Games', 'Games', 'USD', '2014-01-25', 4000.0, '2014-01-03 21:03:37', 11788.5, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['\"GLITTERBOX\" (Canceled)', 'Documentary', 'Film & Video', 'USD', '2011-02-19', 15000.0, '2010-12-21 15:35:40', 100.0, 'canceled']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Held Down by a Shadow - A Columbia MFA thesis film', 'Horror', 'Film & Video', 'USD', '2017-01-03', 11000.0, '2016-12-04 19:33:35', 11040.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "[\"EUTCo presents scenes from Tom Wells' 'The Kitchen Sink'\", 'Festivals', 'Theater', 'GBP', '2015-08-10', 700.0, '2015-07-05 20:49:04', 806.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['DEX::LOG - Sync Any Schedule Notes You Write To Your Phone', 'Design', 'Design', 'HKD', '2016-12-12', 55000.0, '2016-11-19 20:38:33', 0.0, 'suspended']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Nourished Beginnings - Nutrition in Child Care', 'Food', 'Food', 'AUD', '2014-11-06', 16000.0, '2014-10-08 07:11:16', 150.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Lake City -- a Feature-Length Dark Comedy', 'Narrative Film', 'Film & Video', 'USD', '2013-04-18', 20000.0, '2013-03-14 22:03:29', 21314.25, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['The Marathon Performance Dress Sock by Mr. Davis', 'Accessories', 'Fashion', 'USD', '2016-11-04', 15000.0, '2016-10-13 15:46:04', 16625.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Awakening Love of Literacy across United States', 'Journalism', 'Journalism', 'USD', '2015-02-20', 10000.0, '2015-01-21 18:43:18', 1.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Southern Fried Cash', 'Nonfiction', 'Publishing', 'USD', '2015-03-06', 150000.0, '2015-01-07 17:03:06', 0.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Freesyle Jam Camp - Teaches Kids (of all ages) How To Play Frisbee (disc)', 'Games', 'Games', 'USD', '2010-01-05', 500.0, '2009-11-23 02:03:26', 1145.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Gia Giselle Contemporary Couture Rings', 'Fashion', 'Fashion', 'USD', '2011-12-31', 3500.0, '2011-12-10 04:11:47', 0.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['24/7 a scrapbook journal', 'Nonfiction', 'Publishing', 'USD', '2015-09-05', 11000.0, '2015-08-27 05:02:37', 0.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['CHICKS DIG GAY GUYS - Theatrical film release! (Canceled)', 'Narrative Film', 'Film & Video', 'USD', '2013-04-26', 300000.0, '2013-03-27 21:02:41', 1307.78, 'canceled']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['CARTOONAGEDDON', 'Animation', 'Film & Video', 'USD', '2017-04-05', 25680.0, '2017-02-04 21:22:59', 205.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "[\"Help Fund The Colin Alvarez Band's First LP!\", 'Blues', 'Music', 'USD', '2017-10-14', 5000.0, '2017-09-21 04:32:58', 970.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "[\"Lynn and Rob's Gourmet Kitchen\", 'Food', 'Food', 'USD', '2016-04-01', 5000.0, '2016-03-02 20:19:59', 0.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Accidents Waiting to Happen: The 12 Rods Story', 'Documentary', 'Film & Video', 'USD', '2015-05-08', 15000.0, '2015-04-08 20:40:42', 15130.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "[\"Shit's Fucked Candles\", 'Candles', 'Crafts', 'USD', '2015-01-20', 1700.0, '2014-12-21 00:42:04', 65.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['TWIST: adapted from the novel Oliver Twist', 'Plays', 'Theater', 'USD', '2015-10-24', 2000.0, '2015-10-07 18:43:36', 2145.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Razorback', 'Narrative Film', 'Film & Video', 'USD', '2012-05-18', 60000.0, '2012-04-03 03:12:47', 50.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Corliss and Citizen', 'Narrative Film', 'Film & Video', 'USD', '2011-11-27', 50000.0, '2011-10-28 20:00:18', 3922.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Memphis Bound Documentary', 'Country & Folk', 'Music', 'USD', '2012-02-01', 1200.0, '2012-01-03 16:09:08', 1208.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['World Martial Law 2025', 'Mobile Games', 'Games', 'USD', '2015-07-30', 100000.0, '2015-06-01 20:31:07', 100.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Makrtoolbox Mk1 3d Printer (Canceled)', 'Hardware', 'Technology', 'USD', '2014-06-25', 7000.0, '2014-05-26 15:00:31', 1841.0, 'canceled']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['The Most Affordable & Versatile Premium Watch — Kaville', 'Design', 'Design', 'EUR', '2017-11-23', 25000.0, '2017-10-23 09:58:25', 7245.0, 'canceled']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['1ST EVER Fan-Directed Graphic Novel App: The Way (of Yahweh)', 'Comics', 'Comics', 'USD', '2012-08-29', 17580.0, '2012-07-30 21:18:10', 2883.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['The 36 Flavors Initiative (Concert & CD Package)', 'Hip-Hop', 'Music', 'USD', '2015-12-18', 5000.0, '2015-10-19 04:42:30', 0.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Forever Mountain Full-Length Album', 'Music', 'Music', 'USD', '2012-07-12', 750.0, '2012-06-12 04:51:24', 762.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['DOS! Twice the fun of UNO.', 'Tabletop Games', 'Games', 'USD', '2017-06-02', 5000.0, '2017-05-03 15:43:04', 5156.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Play With This Too - Lost Protectors', 'Product Design', 'Design', 'USD', '2015-03-30', 80000.0, '2015-02-27 05:20:51', 71625.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Breaking Ground', 'Country & Folk', 'Music', 'USD', '2013-05-08', 15000.0, '2013-04-08 20:05:37', 15862.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Comunidad online de terapias naturales', 'Technology', 'Technology', 'EUR', '2016-07-21', 10450.0, '2016-06-22 09:55:55', 26.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Fringe Festival Performances - Heart of a Dog', 'Theater', 'Theater', 'USD', '2010-05-22', 1000.0, '2010-03-21 15:03:53', 1696.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['I Make Comics: THE TEE SHIRT!', 'Events', 'Comics', 'USD', '2016-11-08', 100.0, '2016-10-24 21:13:43', 340.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['\"THE BUSINESS\" Funny and serious all in one.', 'Comedy', 'Film & Video', 'USD', '2015-02-09', 15000.0, '2014-12-12 00:13:48', 0.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Exit (Canceled)', 'Shorts', 'Film & Video', 'USD', '2014-03-15', 25000.0, '2014-02-13 14:03:38', 4116.0, 'canceled']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Youtubers Life Series', 'Experimental', 'Film & Video', 'USD', '2016-11-16', 5000.0, '2016-10-17 07:10:13', 0.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "[\"4board- The World's First Square Skateboard\", 'Woodworking', 'Crafts', 'USD', '2017-08-23', 80.0, '2017-07-24 23:19:20', 17.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['SOOZA-PALOOZA!, a Comic Concert', 'Theater', 'Theater', 'USD', '2013-03-31', 29000.0, '2013-03-01 14:57:54', 1525.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['The Impossible Tour - Portland', 'Rock', 'Music', 'USD', '2011-09-06', 1000.0, '2011-08-07 21:09:47', 1106.01, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['I want to create \"My Last First Album\"!', 'Music', 'Music', 'USD', '2012-08-19', 3500.0, '2012-06-20 22:38:18', 100.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Walking Two Roads: A Life Story; My Journey with Chipeta', 'Nonfiction', 'Publishing', 'USD', '2012-09-30', 3500.0, '2012-09-02 01:36:29', 10.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Mustang Sally - Experiences in online dating - Webseries', 'Webseries', 'Film & Video', 'CAD', '2014-03-07', 40000.0, '2014-02-05 18:19:00', 675.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Action Figure: The Movie', 'Documentary', 'Film & Video', 'USD', '2014-08-30', 25000.0, '2014-07-21 21:47:20', 50.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Kombucha Kulture', 'Food', 'Food', 'USD', '2012-05-17', 50000.0, '2012-04-02 07:08:47', 3794.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Project Vino', 'Drinks', 'Food', 'USD', '2015-04-10', 15000.0, '2015-02-19 03:32:43', 0.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Condo Hell - Epic Horror Movie', 'Film & Video', 'Film & Video', 'USD', '2014-02-08', 5000.0, '2014-01-09 03:09:18', 5780.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['1 W North Avenue: New Station North HQ', 'Art', 'Art', 'USD', '2012-12-20', 10000.0, '2012-11-22 22:49:06', 12130.77, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Murderous Monsters Bestiary for Old School Tabletop RPGs', 'Illustration', 'Art', 'USD', '2015-06-26', 2475.0, '2015-05-27 15:15:55', 1627.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['A Japanese/American Style Story Arc', 'Fiction', 'Publishing', 'USD', '2017-05-27', 3500.0, '2017-04-28 01:53:13', 1.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['George Cole & \"Eurocana\" US Tour 2012', 'Music', 'Music', 'USD', '2012-07-21', 7500.0, '2012-06-26 18:33:14', 7592.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['The Next Line', 'Narrative Film', 'Film & Video', 'GBP', '2017-06-26', 600.0, '2017-05-18 01:06:01', 126.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Lucid Labs Raspberry Pi DAC', 'Sound', 'Technology', 'USD', '2015-06-09', 250.0, '2015-05-26 20:29:38', 6495.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['K.Noah: High End Football Uniforms. Ethically produced.', 'Apparel', 'Fashion', 'USD', '2015-12-12', 25000.0, '2015-10-13 09:09:27', 1252.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Chicago Subway and Elevated platform. 146 stations 1 poster', 'Graphic Design', 'Design', 'USD', '2016-04-06', 15000.0, '2016-03-07 09:01:12', 1630.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['The Rapid Response', 'Apps', 'Technology', 'USD', '2016-09-02', 10000.0, '2016-08-03 20:25:10', 0.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['The Tao of Chaos Book Project (Canceled)', 'Nonfiction', 'Publishing', 'USD', '2012-04-26', 30000.0, '2012-03-27 01:46:30', 575.0, 'canceled']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['The Microbrew Project', 'Events', 'Food', 'USD', '2014-10-26', 15000.0, '2014-08-27 18:40:21', 0.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['PathBreaker a D20 System Rules Supplement', 'Tabletop Games', 'Games', 'USD', '2017-03-03', 400.0, '2017-02-01 14:01:53', 28.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Bakersfield Lego Robotics Teams', 'Robots', 'Technology', 'USD', '2014-05-03', 5000.0, '2014-04-03 00:31:32', 2321.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Juana Inés: paráfrasis de sí misma', 'Performance Art', 'Art', 'MXN', '2017-07-31', 40000.0, '2017-06-03 18:24:42', 40000.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Shield of The Interceptor #3', 'Comic Books', 'Comics', 'USD', '2016-08-17', 795.0, '2016-07-13 05:11:29', 1012.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Magazine', 'Publishing', 'Publishing', 'USD', '2016-06-30', 100000.0, '2016-05-31 18:20:44', 0.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Lean Hounds Tour and Record Release', 'Indie Rock', 'Music', 'USD', '2012-06-26', 2100.0, '2012-06-14 19:28:45', 4915.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['WIlly Reed Records presents... \"POWER IN LYRICS\" Showcase.', 'Music', 'Music', 'USD', '2017-08-15', 17000.0, '2017-06-16 04:28:50', 0.0, 'canceled']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Bison Bay: City of Beasts & Angels', 'Comics', 'Comics', 'USD', '2013-09-30', 800.0, '2013-08-30 20:30:51', 115.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Random Open Source Code', 'Conceptual Art', 'Art', 'USD', '2015-11-04', 1000.0, '2015-10-05 23:45:58', 180.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Colorful Original Anime Character Sticker & Postcard', 'Illustration', 'Art', 'USD', '2015-05-13', 200.0, '2015-04-13 21:07:57', 36.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['The Golden Hour Documentary', 'Documentary', 'Film & Video', 'USD', '2011-10-19', 2000.0, '2011-09-19 05:58:04', 2335.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['The Sweatshop', 'Shorts', 'Film & Video', 'USD', '2012-04-12', 4000.0, '2012-03-13 21:07:27', 4561.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Sport Valet- The best way to protect your gear and vehicle', 'Product Design', 'Design', 'USD', '2015-12-01', 30000.0, '2015-11-01 17:14:46', 150.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Naipe en las Carreras', 'Mobile Games', 'Games', 'EUR', '2017-10-21', 15000.0, '2017-09-11 10:35:19', 30.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Ligature Marks: An Erotica Collection', 'Fiction', 'Publishing', 'USD', '2012-05-27', 1300.0, '2012-04-27 18:31:54', 96.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Animal Picture and HD Video', 'Animals', 'Photography', 'NOK', '2015-09-06', 4500.0, '2015-07-28 01:06:57', 8.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['24H Girlfriend (Canceled)', 'Experimental', 'Film & Video', 'EUR', '2015-10-31', 1100.0, '2015-09-12 05:51:35', 50.0, 'canceled']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['A Top Contra Dance Caller for our Band', 'Music', 'Music', 'USD', '2013-03-04', 1750.0, '2013-02-02 17:20:52', 1828.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Cleveland Steamer and His Faithful Dog Blumpkin', 'Publishing', 'Publishing', 'USD', '2016-02-03', 8500.0, '2016-01-04 04:09:52', 0.0, 'undefined']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Through the Bare Eye (Canceled)', 'Photography', 'Photography', 'USD', '2012-09-08', 6000.0, '2012-08-09 06:16:53', 0.0, 'canceled']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Haley Cole - \"Illusions\"', 'Music', 'Music', 'USD', '2014-10-02', 17500.0, '2014-08-21 19:10:48', 18581.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Judge Dredd Miniatures Game: Block War', 'Tabletop Games', 'Games', 'USD', '2012-10-13', 2000.0, '2012-09-13 10:37:28', 101457.01, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Heartbreak Quadrant', 'Comics', 'Comics', 'USD', '2015-11-25', 3750.0, '2015-10-26 21:24:10', 5262.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['A Werewolf Stole My Cigarettes: A Dark Secret Place Novel.', 'Fiction', 'Publishing', 'USD', '2013-03-09', 10000.0, '2013-02-17 02:59:35', 10995.09, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Five Million People. One Book. (Canceled)', 'Nonfiction', 'Publishing', 'USD', '2010-12-21', 3000.0, '2010-11-21 03:57:31', 0.0, 'canceled']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['One Sunday in Birmingham 2018', 'Plays', 'Theater', 'USD', '2018-01-16', 1500.0, '2017-12-02 06:15:08', 525.0, 'live']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['La Verdad: The Webseries', 'Webseries', 'Film & Video', 'USD', '2012-05-25', 10000.0, '2012-04-10 02:07:18', 35.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['The RepRap Project: Self Replicating DIY 3D Printer', 'Hardware', 'Technology', 'USD', '2012-06-22', 2000.0, '2012-05-22 05:35:33', 131.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Handsome Devils Co. Hot Sauce | Curiously Crafted', 'Small Batch', 'Food', 'AUD', '2015-07-04', 5000.0, '2015-06-04 06:57:02', 2728.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['FIDGET FLASH™ | 4GB USB Fidget Spinners', 'Product Design', 'Design', 'USD', '2017-09-09', 10000.0, '2017-08-10 12:56:14', 71.0, 'canceled']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Offcut Cheese Board', 'Product Design', 'Design', 'USD', '2015-12-17', 4000.0, '2015-12-04 00:05:50', 1.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Class-B Scout Revolution T-shirt', 'Fashion', 'Fashion', 'USD', '2012-10-11', 700.0, '2012-09-28 16:25:01', 296.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Pokemon Go at the Yakima Arboretum!', 'Mobile Games', 'Games', 'USD', '2016-09-23', 1000.0, '2016-08-28 20:43:03', 0.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['TatChat app - yr Tat can Chat', 'Art', 'Art', 'USD', '2015-06-25', 88000.0, '2015-05-09 00:18:42', 672.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Previously... Art Exhibition', 'Art', 'Art', 'GBP', '2013-12-13', 600.0, '2013-11-13 17:14:44', 20.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "[\"Flight of Fire's New Concept Album - Path of the Phoenix\", 'Rock', 'Music', 'USD', '2016-02-16', 10000.0, '2016-01-17 03:12:55', 11808.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['VOZ: Empowering Ethical Fashion', 'Fashion', 'Fashion', 'USD', '2011-04-28', 8000.0, '2011-03-08 20:26:57', 8649.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['BATTERED & ABUSED: My Story', 'Documentary', 'Film & Video', 'USD', '2012-12-05', 30000.0, '2012-11-05 04:34:53', 50.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Zeiss Presents : A Single for Everyone!', 'Music', 'Music', 'USD', '2013-05-22', 10000.0, '2013-04-22 19:19:51', 100.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['La Gente de la Tierra Post-Production: Projects of the Earth', 'Documentary', 'Film & Video', 'USD', '2017-10-06', 1000.0, '2017-09-06 01:49:50', 126.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['A Bluetooth Headset Attached to Phone-Never Lose or Forget', 'Hardware', 'Technology', 'USD', '2014-10-10', 10000.0, '2014-09-02 13:59:28', 576.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Twin Cities Jazz Sampler Volume Two', 'Jazz', 'Music', 'USD', '2016-11-10', 2500.0, '2016-10-11 16:29:57', 2525.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['REC• Whacky | Your Stressfree Companion', 'Product Design', 'Design', 'HKD', '2016-12-03', 136500.0, '2016-10-19 19:19:29', 2632.0, 'canceled']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Pirates & Dragons the RPG (Canceled)', 'Tabletop Games', 'Games', 'GBP', '2013-09-11', 12000.0, '2013-08-02 11:59:43', 2903.0, 'canceled']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Sky Relics: A Sky Adventure Awaits (Canceled)', 'Tabletop Games', 'Games', 'USD', '2015-05-27', 6500.0, '2015-04-18 19:24:43', 6452.0, 'canceled']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Drum Meditations with Budhi Harlow', 'World Music', 'Music', 'USD', '2013-01-01', 2500.0, '2012-12-07 01:25:03', 461.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Meet Me By The Moon', 'Music', 'Music', 'USD', '2016-03-14', 4500.0, '2016-02-14 00:41:10', 4501.0, 'undefined']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Heroes of Normandie, strategic resupply', 'Tabletop Games', 'Games', 'EUR', '2015-12-18', 40000.0, '2015-11-24 17:53:56', 212098.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "[\"The Gambler's Guide\", 'Playing Cards', 'Games', 'USD', '2016-02-03', 10000.0, '2016-01-19 22:18:21', 0.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Beautiful Indigo Shibori Leather Bags Handmade in Hawaii', 'Fashion', 'Fashion', 'USD', '2013-12-24', 5800.0, '2013-11-19 06:57:34', 6155.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['CRAZYWISE: Rethinking Madness — A Documentary Film', 'Documentary', 'Film & Video', 'USD', '2014-06-21', 75000.0, '2014-05-19 03:45:38', 87001.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['War is Coming: Shieldmaidens vs Orcs (Canceled)', 'Tabletop Games', 'Games', 'USD', '2016-02-11', 30000.0, '2016-01-12 19:58:54', 39604.0, 'canceled']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Targeting Iran', 'Documentary', 'Film & Video', 'USD', '2012-11-26', 5500.0, '2012-10-27 20:10:08', 735.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['BREAKING THE LIGHT™', 'Fine Art', 'Photography', 'USD', '2017-04-21', 50000.0, '2017-03-21 23:52:16', 2.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Reality Check Movie Project', 'Narrative Film', 'Film & Video', 'USD', '2011-08-26', 200000.0, '2011-07-24 08:54:15', 10475.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Nathans First Album Recording', 'Blues', 'Music', 'GBP', '2017-03-05', 3000.0, '2017-02-03 16:05:06', 0.0, 'canceled']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Vicious Sun - an Illustrated Fantasy Novel', 'Fiction', 'Publishing', 'USD', '2013-01-04', 10000.0, '2012-12-04 18:11:30', 2155.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['The Blue Dress - Flightless Birds Summer Tour Fund', 'Indie Rock', 'Music', 'USD', '2012-01-29', 600.0, '2011-11-30 18:27:06', 45.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "[\"Bali's Paradise Paradigm\", 'Documentary', 'Film & Video', 'GBP', '2017-03-16', 2250.0, '2017-02-23 01:09:59', 2748.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['CLANDESTINE - A Film about the Refugee Crisis by Stuart Gatt', 'Shorts', 'Film & Video', 'GBP', '2015-10-18', 70000.0, '2015-09-18 10:28:34', 5317.0, 'canceled']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['The SOCKS Nation - The Brightest Socks You Will Ever Own', 'Apparel', 'Fashion', 'USD', '2016-04-22', 10000.0, '2016-03-18 19:16:11', 3115.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['T-BOTS | Balancing Robots', 'Robots', 'Technology', 'GBP', '2017-11-22', 100000.0, '2017-10-03 17:19:34', 7613.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Ironcore Resistance is asking you to JOIN THE RESISTANCE', 'Rock', 'Music', 'USD', '2016-10-05', 20000.0, '2016-09-05 23:36:21', 0.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Sculpting a new path (Canceled)', 'Digital Art', 'Art', 'USD', '2014-08-21', 900.0, '2014-07-22 03:48:21', 0.0, 'canceled']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Chocolate Chip Cookies :)', 'Food', 'Food', 'GBP', '2014-08-08', 100.0, '2014-07-09 21:08:31', 0.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "[\"GrlScouts™: You're favorite clothing for everyday wear\", 'Apparel', 'Fashion', 'USD', '2017-06-15', 7000.0, '2017-05-26 21:54:45', 5.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['The Tucky', 'Product Design', 'Design', 'USD', '2017-09-14', 11000.0, '2017-08-15 02:07:30', 587.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Dragon Clash', 'Tabletop Games', 'Games', 'USD', '2013-04-26', 5000.0, '2013-03-27 01:38:48', 8573.19, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['THYMOS | The World’s First Self-Sanitising Shield', 'Technology', 'Technology', 'SGD', '2017-01-15', 20000.0, '2016-12-14 03:34:07', 30588.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Padel Tennis Pro - iOS App', 'Technology', 'Technology', 'GBP', '2012-12-08', 1200.0, '2012-11-08 22:11:56', 1202.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['THE PATH TO NIDAROS, a fullscale building project, May 2016', 'Architecture', 'Design', 'NOK', '2016-04-16', 20000.0, '2016-03-17 14:40:47', 20600.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Documentary To Increase The Success Of Minority Owned Businesses', 'Documentary', 'Film & Video', 'USD', '2010-08-17', 2500.0, '2010-07-14 01:10:10', 100.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['No thanks Enamel Pin', 'Accessories', 'Fashion', 'AUD', '2017-10-12', 300.0, '2017-09-12 15:09:38', 89.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['DEMOCRACY 2.0: Rules of Order for Everyday Democrats', 'Nonfiction', 'Publishing', 'CAD', '2015-04-30', 4000.0, '2015-03-31 09:14:47', 582.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Pelican Dreams', 'Documentary', 'Film & Video', 'USD', '2014-05-31', 50000.0, '2014-05-01 09:00:56', 51300.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Pseudopod: Year 10', 'Anthologies', 'Publishing', 'USD', '2016-11-23', 30645.0, '2016-10-25 16:00:08', 33677.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Wanderlust Catamaran Video Travel/Charter the Caribbean', 'Documentary', 'Film & Video', 'USD', '2017-08-05', 2500.0, '2017-07-06 08:23:04', 0.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Petri Wars', 'Tabletop Games', 'Games', 'USD', '2015-07-06', 16000.0, '2015-06-04 04:26:04', 6023.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['The Unkindness of Ravens (Feature Film) Epic Horror Fantasy', 'Horror', 'Film & Video', 'GBP', '2015-12-11', 40000.0, '2015-11-09 16:52:32', 44039.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['KeyBit - MagSafe Adapter Key Ring', 'Product Design', 'Design', 'USD', '2013-05-23', 10000.0, '2013-04-23 18:58:39', 16338.45, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['RNDR', 'Product Design', 'Design', 'GBP', '2017-05-01', 4000.0, '2017-03-14 15:17:53', 889.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Kiss a Frog? YUK!', \"Children's Books\", 'Publishing', 'GBP', '2017-12-06', 15000.0, '2017-11-06 09:58:08', 522.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Ultimate Snacks', 'Small Batch', 'Food', 'USD', '2017-03-15', 100.0, '2017-03-08 19:30:58', 720.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['The Whitestone Bridge', 'Film & Video', 'Film & Video', 'USD', '2017-08-10', 85000.0, '2017-07-06 18:16:39', 10010.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Crawl - A fantastic journey', 'Shorts', 'Film & Video', 'GBP', '2017-06-03', 500.0, '2017-05-04 15:12:54', 512.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Modding the Ingress Community', 'Mobile Games', 'Games', 'USD', '2014-08-14', 12000.0, '2014-07-30 18:38:05', 25.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Brew a bro.', 'Drinks', 'Food', 'USD', '2014-12-31', 500.0, '2014-11-05 18:27:25', 0.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Halfway Log Dump Bouldering Guidebook', 'Publishing', 'Publishing', 'CAD', '2016-03-09', 5000.0, '2016-02-08 15:36:25', 2187.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['iSpy SOS', 'Gadgets', 'Technology', 'USD', '2015-06-26', 75000.0, '2015-05-27 21:56:48', 0.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Keystone in Color', 'Product Design', 'Design', 'USD', '2015-10-29', 3000.0, '2015-09-22 11:46:25', 9243.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['The Cat Project for Cat Lovers', 'Apparel', 'Fashion', 'USD', '2017-05-24', 6000.0, '2017-04-24 19:12:49', 12.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "[\"Let's make a delicious and filling dinner for my roommates!\", 'Food', 'Food', 'USD', '2014-08-10', 40.0, '2014-07-11 20:33:14', 0.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['The Church Owls are recording their first studio album', 'Indie Rock', 'Music', 'USD', '2012-12-20', 2500.0, '2012-11-20 01:34:56', 240.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['GBS Detroit Presents HazardHead (Canceled)', 'Rock', 'Music', 'USD', '2012-11-03', 600.0, '2012-10-19 18:41:34', 1.0, 'canceled']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Believing is Kreating', 'Classical Music', 'Music', 'CAD', '2013-12-24', 5000.0, '2013-11-22 19:10:31', 5278.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Sounder EZ-Trieve Diving Lure', 'Gadgets', 'Technology', 'USD', '2017-02-17', 22500.0, '2017-01-14 18:07:30', 3279.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Coach For Kids', 'Young Adult', 'Publishing', 'USD', '2014-10-19', 7500.0, '2014-09-04 00:09:01', 0.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Let\\'s press a 45 rpm 7\" single!', 'Indie Rock', 'Music', 'USD', '2016-01-11', 800.0, '2015-12-12 15:22:15', 800.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Peanut Gallery Comics', 'Comic Books', 'Comics', 'USD', '2016-03-04', 3200.0, '2016-01-29 02:20:23', 6730.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['The CurlBand-a fast, easy, and heatless way to salon curls', 'Product Design', 'Design', 'USD', '2017-01-07', 11000.0, '2016-12-08 17:48:49', 365.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['TETRAN Modular Design Furniture', 'Product Design', 'Design', 'USD', '2012-07-30', 150000.0, '2012-06-22 21:25:13', 8089.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Tapigami presents Hacker Glasses', 'Product Design', 'Design', 'USD', '2013-03-10', 15000.0, '2013-02-11 16:36:13', 16058.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['People who stutter FREE and EXPRESSED on stage!!!', 'Musical', 'Theater', 'USD', '2014-11-16', 4000.0, '2014-10-14 18:54:41', 0.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Fatherhood - One mans search on how to care for a newborn', 'Audio', 'Journalism', 'GBP', '2016-02-16', 2000.0, '2016-01-17 23:12:10', 26.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "[\"PocketLab Air: Measure What's in Your Air\", 'Gadgets', 'Technology', 'USD', '2017-12-21', 25000.0, '2017-11-14 14:37:28', 118164.11, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['All organic beef and pork farm', 'Bacon', 'Food', 'CAD', '2016-03-01', 44000.0, '2016-01-31 17:42:47', 100.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['The Chibi-Death T-Shirt line', 'Fashion', 'Fashion', 'USD', '2013-07-24', 400.0, '2013-06-24 21:31:16', 4.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Simple LED tester ', 'DIY Electronics', 'Technology', 'GBP', '2014-12-01', 450.0, '2014-11-10 03:48:16', 213.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Bal Guinguette (Moderne) #1 - French Party in New Orleans', 'Music', 'Music', 'USD', '2016-04-04', 1000.0, '2016-03-28 17:07:54', 1042.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['the candler blog covers SXSW 2010', 'Narrative Film', 'Film & Video', 'USD', '2010-03-10', 500.0, '2010-02-23 13:56:43', 195.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "[\"Flame Con - NYC's First LGBTQ Comic Con!\", 'Events', 'Comics', 'USD', '2014-12-04', 15000.0, '2014-11-04 16:39:04', 19616.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Mike Westcott\\'s upcoming studio release \"Justice Road\".', 'Rock', 'Music', 'USD', '2012-07-06', 12000.0, '2012-06-06 18:00:34', 4112.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Gidjit Beacons and Gidjit App', 'Gadgets', 'Technology', 'USD', '2016-09-03', 1000.0, '2016-07-20 15:48:42', 1049.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Humans of Nelson: The Book', 'Art Books', 'Publishing', 'CAD', '2014-08-23', 10000.0, '2014-08-09 05:00:42', 10350.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['What Women Really Want from Men', 'Nonfiction', 'Publishing', 'USD', '2015-08-08', 8000.0, '2015-07-09 21:30:26', 1493.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Supporting small business America', 'Fashion', 'Fashion', 'USD', '2017-04-30', 7000.0, '2017-03-31 18:24:11', 52.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Aether Game Engine - Open Source Linux/Android/Windows/Mac', 'Software', 'Technology', 'USD', '2013-01-08', 1000.0, '2012-12-09 17:49:20', 87.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['T-Shirts featuring Cephalopods, a Snail, a Whale and Love', 'Product Design', 'Design', 'USD', '2010-08-16', 600.0, '2010-07-02 08:47:10', 1201.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['TUG', 'Video Games', 'Games', 'USD', '2013-05-31', 215000.0, '2013-05-01 22:26:48', 293184.05, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Live Recording: Tom Ewing and the Friends & Family Band', 'Faith', 'Music', 'USD', '2014-07-24', 12000.0, '2014-06-24 16:21:58', 14470.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Studio Album & Music Video for TCA Artist', 'Music', 'Music', 'USD', '2014-01-31', 50000.0, '2013-12-27 22:25:51', 10.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['\"Like Starr\"', 'Pop', 'Music', 'USD', '2014-12-05', 8000.0, '2014-11-04 01:35:23', 7.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Shall We Tango NYC Citywide Tango Festival Oct 7-15, 2014', 'Performances', 'Dance', 'USD', '2014-08-23', 10000.0, '2014-06-24 18:49:37', 11075.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Robbin Latchkey (Canceled)', \"Children's Books\", 'Publishing', 'USD', '2012-05-13', 3100.0, '2012-04-13 22:27:09', 5.0, 'canceled']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Stickman: The Adventures of Stickman', \"Children's Books\", 'Publishing', 'CAD', '2016-02-01', 2000.0, '2015-12-03 17:00:03', 2200.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['WE KNOW WHERE YOU LIVE (WORLD PREMIERE) (Canceled)', 'Plays', 'Theater', 'GBP', '2015-07-10', 3500.0, '2015-06-10 18:59:37', 510.0, 'canceled']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Empty Home', 'Horror', 'Film & Video', 'USD', '2016-12-02', 300.0, '2016-11-21 23:40:58', 1060.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Advanced Original Wordpress Plugins', 'Web', 'Technology', 'USD', '2015-03-30', 15000.0, '2015-02-28 05:13:43', 4.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['The Republic - Immersive Theater Experience', 'Theater', 'Theater', 'USD', '2015-04-01', 7500.0, '2015-03-02 00:53:21', 7975.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['The Rocket Bike', 'Comedy', 'Film & Video', 'USD', '2015-07-19', 2000.0, '2015-06-04 22:20:21', 21.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Air Blue Pilot Watches', 'Wearables', 'Technology', 'USD', '2015-09-03', 50000.0, '2015-08-04 21:35:45', 76948.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['CroChaos - Croquet Gone Wild!!!!', 'Live Games', 'Games', 'USD', '2015-09-16', 500.0, '2015-08-17 14:15:23', 645.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['SLEEPING ON VENICE BEACH', 'Nonfiction', 'Publishing', 'USD', '2015-05-01', 1000.0, '2015-04-01 00:33:18', 5.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "[\"Evie's Eats and Natural Treats Food Truck\", 'Food Trucks', 'Food', 'USD', '2014-07-06', 30000.0, '2014-06-06 01:07:12', 50.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['The Best Durable Shirts Without the Luxury Markup', 'Apparel', 'Fashion', 'EUR', '2017-09-14', 20000.0, '2017-08-10 20:46:38', 6495.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Life Hacks Learning Centre - An Educational Revolution', 'Web', 'Technology', 'GBP', '2015-10-15', 15000.0, '2015-09-15 22:38:56', 0.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['USC Korean Culture Night 2012', 'Theater', 'Theater', 'USD', '2012-03-11', 5000.0, '2012-02-24 06:59:08', 70.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['The Red Ties Album (Canceled)', 'Rock', 'Music', 'USD', '2015-03-21', 900.0, '2015-02-20 00:59:14', 28.0, 'canceled']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Love Through The Eyes Of A Man', 'Nonfiction', 'Publishing', 'GBP', '2016-11-02', 10.0, '2016-10-03 17:35:36', 0.0, 'canceled']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['SheNative: Leather handbags that EMPOWER Indigenous women', 'Accessories', 'Fashion', 'CAD', '2016-11-11', 20000.0, '2016-10-12 21:55:18', 24107.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['MAKE 100: David Walsh, Bowlmaker, Black Walnut Wooden Bowls', 'Woodworking', 'Crafts', 'USD', '2017-02-18', 250.0, '2017-01-29 23:00:54', 9190.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Foxing Quarterly: A Literary Journal', 'Publishing', 'Publishing', 'USD', '2012-10-11', 8000.0, '2012-09-11 21:17:05', 8334.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Help Ruth Soap Fund Goats for Petting Zoo and Making Soap!', 'Crafts', 'Crafts', 'USD', '2014-08-19', 7000.0, '2014-08-07 22:02:02', 0.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Double D string stretcher', 'Music', 'Music', 'USD', '2016-06-23', 25000.0, '2016-05-14 17:12:57', 100.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Make Clayton Smith the King of Westeros of Virginia', 'Performance Art', 'Art', 'USD', '2014-05-15', 600.0, '2014-04-30 02:23:22', 248.38, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['T-Bird & Throttle #1 - A new comic from creator Josh Howard.', 'Comics', 'Comics', 'USD', '2017-11-29', 8000.0, '2017-10-30 15:50:01', 9330.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Snug Harbor - the upcoming full-length album will feature the funk septet and guests!', 'Indie Rock', 'Music', 'USD', '2010-08-30', 1000.0, '2010-06-30 22:43:31', 50.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "[\"I'm Falling, And I Can't Get Up!\", 'Pop', 'Music', 'USD', '2013-09-12', 5000.0, '2013-08-13 22:17:17', 180.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Solitude - A film by John Sedlack', 'Shorts', 'Film & Video', 'USD', '2011-03-12', 7700.0, '2011-02-10 22:00:05', 7907.01, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Factory-Made Decider Die for HISTORY MAKER BASEBALL!', 'Tabletop Games', 'Games', 'USD', '2014-03-09', 1250.0, '2014-02-24 00:06:56', 4754.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Angry Sheep - A Dice & Token Game by Iron Box Games', 'Tabletop Games', 'Games', 'USD', '2013-08-18', 15000.0, '2013-07-29 16:54:48', 6811.0, 'canceled']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Estelle / A Dance Documentary', 'Documentary', 'Film & Video', 'GBP', '2016-11-15', 3500.0, '2016-09-16 12:49:14', 6156.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['The Psychedelic Colouring Book', 'Art Books', 'Publishing', 'GBP', '2016-12-07', 2000.0, '2016-11-07 09:30:28', 1303.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['HAVE GLOVE, WILL TRAVEL: The Bill \"Spaceman\" Lee Movie', 'Narrative Film', 'Film & Video', 'USD', '2011-08-26', 37000.0, '2011-07-20 00:13:02', 44001.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Fire At Will! (Canceled)', 'Tabletop Games', 'Games', 'USD', '2014-08-14', 12000.0, '2014-07-02 17:42:15', 4322.0, 'canceled']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['FORECLOSURE - SHORT FILM (Canceled)', 'Drama', 'Film & Video', 'USD', '2014-11-19', 23042.0, '2014-10-15 01:02:46', 100.0, 'canceled']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Michael Rider : Album #2', 'Indie Rock', 'Music', 'USD', '2015-08-10', 2500.0, '2015-07-01 19:13:00', 1442.01, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Ricaud Photography', 'Photography', 'Photography', 'GBP', '2016-06-09', 2500.0, '2016-05-10 22:20:42', 0.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "[\"Age of Lords Campaign Setting Rulebook & Player's Guide\", 'Tabletop Games', 'Games', 'USD', '2011-07-01', 800.0, '2011-05-17 04:43:09', 1541.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Jurney, in to the mind of a refugee.', 'Video', 'Journalism', 'EUR', '2016-06-15', 7500.0, '2016-06-02 14:13:14', 0.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Nativity Scene Piece By Piece', 'Product Design', 'Design', 'USD', '2012-12-03', 2000.0, '2012-11-01 19:38:10', 3855.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['The Adventures of Cammy Lambie', \"Children's Books\", 'Publishing', 'USD', '2015-04-04', 6823.0, '2015-03-05 07:47:22', 1495.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Slowhand by MasterMind Design', 'Sound', 'Technology', 'USD', '2017-02-27', 8000.0, '2017-01-13 16:59:56', 1994.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['HERE TO HELP - Syrian refugee aid worker documentary', 'Documentary', 'Film & Video', 'USD', '2017-04-08', 40000.0, '2017-04-01 05:18:02', 250.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['\"Broken Glass\"', \"Children's Books\", 'Publishing', 'USD', '2012-08-24', 10000.0, '2012-07-25 13:28:22', 990.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['HEATWORKS MODEL 1: Your next water heater!', 'Hardware', 'Technology', 'USD', '2014-02-16', 125000.0, '2014-01-02 15:04:36', 436594.58, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "[\"Let's Just wing it!\", 'Apps', 'Technology', 'USD', '2014-12-20', 5000.0, '2014-11-20 19:12:52', 0.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['First-Edition Prints of Emerging Artist Delphi Colquhoun', 'Art', 'Art', 'USD', '2011-10-13', 400.0, '2011-09-13 19:04:35', 536.23, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Moppelpop handmade baby portraits', 'Mixed Media', 'Art', 'EUR', '2017-08-10', 1200.0, '2017-07-27 21:50:23', 0.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Knee High Boots for Sunny Days', 'Footwear', 'Fashion', 'USD', '2017-05-30', 12000.0, '2017-05-03 23:18:42', 6211.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Grassfield Black Box Theater Stage (Eagle Project)', 'Plays', 'Theater', 'USD', '2017-09-13', 500.0, '2017-08-14 22:09:49', 520.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "[\"Mady's Storm\", 'Crafts', 'Crafts', 'USD', '2015-03-04', 500.0, '2015-02-02 20:52:36', 520.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['The Compluffins', \"Children's Books\", 'Publishing', 'USD', '2015-06-15', 60000.0, '2015-04-16 20:32:12', 28.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['A Traveling Art Gallery: Urban & Feather', 'Painting', 'Art', 'USD', '2014-08-17', 1500.0, '2014-07-21 01:51:27', 1798.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Urizen Zero #1 The Comic Book', 'Comic Books', 'Comics', 'USD', '2017-02-10', 2160.0, '2017-01-11 20:47:46', 7.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Martian Comics', 'Comics', 'Comics', 'USD', '2014-05-07', 2500.0, '2014-04-15 01:35:24', 2535.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Historic Queen Anne Home Complete Restoration', 'Public Art', 'Art', 'USD', '2015-02-20', 50000.0, '2015-01-21 14:32:23', 0.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['CINCH™ :: minimalist wallet :: made in the USA (Canceled)', 'Product Design', 'Design', 'USD', '2013-01-16', 5000.0, '2012-12-17 22:12:36', 1047.0, 'canceled']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Bleeding Audio: The Matches & the Music Industry Documentary', 'Documentary', 'Film & Video', 'USD', '2017-03-24', 35000.0, '2017-02-22 21:00:23', 38785.3, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Gestalt Therapy New Writers Web Journal', 'Publishing', 'Publishing', 'GBP', '2016-11-15', 500.0, '2016-10-16 17:05:17', 800.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Musica fabulosa · Ein fantastischer Foto-Kalender für 2016', 'Photography', 'Photography', 'EUR', '2015-07-05', 5000.0, '2015-06-05 17:52:49', 5307.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['de Palo Coffee Accessories: Made from real coffee wood', 'Drinks', 'Food', 'USD', '2017-01-02', 50000.0, '2016-11-23 03:55:06', 5753.0, 'canceled']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['New Era Detroit Official Logo T-Shirts', 'Apparel', 'Fashion', 'USD', '2015-04-12', 330.0, '2015-03-30 19:40:59', 376.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['The Ruffled Feathers - Oracles', 'Indie Rock', 'Music', 'USD', '2011-09-07', 3500.0, '2011-08-08 18:24:17', 4510.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['A City in Portraits : The Ypsi Project Exhibit', 'Photography', 'Photography', 'USD', '2010-04-24', 2400.0, '2010-03-24 05:21:23', 2531.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Casablanca - The Gin Joint Cut (The Play)', 'Plays', 'Theater', 'USD', '2017-03-16', 15000.0, '2017-02-14 20:49:01', 16606.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Y2k (Canceled)', 'Comedy', 'Film & Video', 'USD', '2015-06-19', 7000.0, '2015-04-20 21:53:40', 30.0, 'canceled']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['OolaLounge The Ultimate Pool Float and Lounge', 'Design', 'Design', 'USD', '2017-07-16', 45000.0, '2017-06-01 03:54:02', 1426.0, 'canceled']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['THE ULTIMATE TRANSFORMATION COOLER.', 'Product Design', 'Design', 'USD', '2014-06-08', 2000.0, '2014-05-09 20:40:43', 26.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Get Nansemond River HS to Scotland for the Fringe!', 'Festivals', 'Theater', 'USD', '2015-11-05', 5000.0, '2015-10-06 18:54:34', 50.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Help Get Us to \"Playlist Live\" (Canceled)', 'Film & Video', 'Film & Video', 'USD', '2013-08-11', 800.0, '2013-06-27 21:26:51', 14.0, 'canceled']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Bettering AgniKai Productions', 'Video Games', 'Games', 'USD', '2014-08-17', 1000.0, '2014-07-18 05:35:19', 1.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['The Evil Butterfly (Canceled)', 'Fiction', 'Publishing', 'AUD', '2015-07-19', 50000.0, '2015-06-19 19:37:50', 0.0, 'canceled']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Chapter 2: Doorways And Demons', 'Thrillers', 'Film & Video', 'USD', '2015-05-28', 5555.0, '2015-04-28 05:51:30', 0.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['worst friends finishing funds', 'Shorts', 'Film & Video', 'USD', '2011-01-01', 6500.0, '2010-11-30 00:31:46', 6810.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Art N Science', 'Art', 'Art', 'USD', '2015-03-19', 1500.0, '2015-02-17 17:36:05', 150.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['An Environmental Research Mission To Explore Plastic Debris In The Sargasso Sea.', 'Hardware', 'Technology', 'USD', '2009-12-26', 3500.0, '2009-11-23 23:18:34', 3620.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['2012 Music And Performing Arts Conference \"iMPAC AUSTiN\" CD', 'Music', 'Music', 'USD', '2012-10-02', 20000.0, '2012-09-04 23:20:23', 0.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Zallex3.0: Handsome RFID canvas slim designed for minimalist', 'Product Design', 'Design', 'AUD', '2017-02-14', 1000.0, '2017-01-24 18:32:05', 11893.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Jepo Sports Software', 'Software', 'Technology', 'EUR', '2014-08-17', 25000.0, '2014-07-28 19:05:23', 10.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['No Flood Tub', 'Technology', 'Technology', 'USD', '2015-03-22', 30000.0, '2015-02-20 21:51:49', 251.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Creation: Symphony Of Fire', 'Country & Folk', 'Music', 'USD', '2013-06-15', 1000.0, '2013-05-06 22:54:25', 126.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Wooden Rose: From Web to Print', 'Comics', 'Comics', 'USD', '2012-12-16', 2500.0, '2012-11-16 21:58:42', 5631.04, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['The Goodbye Song Goes to London! (Canceled)', 'Theater', 'Theater', 'USD', '2012-05-04', 14000.0, '2012-03-19 23:44:43', 1580.0, 'canceled']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['SCAD Performing Arts Showcase Goes on the Road', 'Theater', 'Theater', 'USD', '2013-03-11', 3000.0, '2013-02-12 00:59:28', 3200.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['TribEndurance Chia Energy Bars. Tasty-All Natural-Handmade!!', 'Food', 'Food', 'USD', '2013-01-10', 10000.0, '2012-11-27 00:44:31', 10304.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['The Big Face Woody', 'Product Design', 'Design', 'USD', '2013-02-20', 11000.0, '2013-01-21 21:07:23', 101607.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Mythology and Fabled based Zines, Prints and Pins.', 'Comic Books', 'Comics', 'CAD', '2017-02-22', 600.0, '2017-01-23 04:06:20', 747.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['“A Friend Indeed – The Bill Sackter Story” TV Broadcast', 'Documentary', 'Film & Video', 'USD', '2014-02-24', 15000.0, '2014-01-16 06:38:31', 15725.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['The Tanndle: Easy self-tanning for those hard-to-reach areas', 'Accessories', 'Fashion', 'GBP', '2016-10-14', 10000.0, '2016-09-09 09:42:56', 3347.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['The Hopnoot Movement. Share Your Ride and Save Environment', 'Apps', 'Technology', 'USD', '2015-09-07', 10000.0, '2015-07-09 23:15:29', 0.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "[\"The Same Don't Stay The Same / PATRICK GIBSON\", 'Country & Folk', 'Music', 'USD', '2014-07-22', 25000.0, '2014-06-22 18:45:49', 675.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['King Blaze Project', 'Hip-Hop', 'Music', 'USD', '2015-07-18', 15000.0, '2015-06-14 10:04:34', 0.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Toronto Comics: Volume 3', 'Anthologies', 'Comics', 'CAD', '2016-04-01', 10000.0, '2016-03-02 04:42:15', 12398.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Sins of the Past', 'Drama', 'Film & Video', 'USD', '2014-09-19', 1500.0, '2014-08-20 00:51:21', 1505.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Things Boulders Ate', 'Photobooks', 'Photography', 'USD', '2014-11-17', 700.0, '2014-10-27 04:00:13', 1066.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['AutismSAM', 'Apps', 'Technology', 'USD', '2015-07-31', 10000.0, '2015-07-01 13:39:51', 226.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Joyful Noise: The Music of Horace Silver - Recording Project', 'Jazz', 'Music', 'USD', '2014-10-02', 12500.0, '2014-08-29 05:58:50', 13877.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Prestige - pen', 'Product Design', 'Design', 'USD', '2016-02-03', 500.0, '2016-01-30 17:24:43', 500.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['PAARI', 'Thrillers', 'Film & Video', 'AUD', '2014-12-30', 20000.0, '2014-10-31 04:12:51', 7.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Narci-Masicho (Canceled)', 'Shorts', 'Film & Video', 'USD', '2012-04-16', 1500.0, '2012-03-03 06:48:18', 75.0, 'canceled']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "[\"Gypsy Scoops Ice Cream-Treat Ya Self, Don't Cheat Ya Self\", 'Food', 'Food', 'USD', '2015-05-16', 10000.0, '2015-04-01 04:03:18', 6975.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Pen as Art (Canceled)', 'Product Design', 'Design', 'USD', '2015-12-10', 100000.0, '2015-11-10 17:10:55', 20472.0, 'canceled']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Join my Fund Raiser this Band Rocks Sideways', 'Indie Rock', 'Music', 'USD', '2014-07-19', 3500.0, '2014-05-28 02:01:14', 121.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['D-Lish Edibles on Wheels!', 'Food', 'Food', 'USD', '2012-03-17', 8000.0, '2012-01-17 17:30:37', 125.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Auxiliary Magazine Print and Digital Subscriptions Launch', 'Periodicals', 'Publishing', 'USD', '2014-08-24', 1500.0, '2014-07-25 20:34:37', 3691.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Tribal Markings', 'Photography', 'Photography', 'USD', '2011-01-30', 15000.0, '2010-11-01 06:31:39', 476.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Homemade Pizza', 'Food', 'Food', 'USD', '2014-08-10', 10.0, '2014-07-11 18:48:41', 0.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['The Spin Station', 'Design', 'Design', 'USD', '2015-07-05', 6000.0, '2015-06-03 22:51:56', 6593.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['The Cleanest Bar on Planet Earth', 'Small Batch', 'Food', 'USD', '2016-09-16', 10000.0, '2016-08-17 19:26:01', 50033.05, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Steampunk Animal 2014 Calendar', 'Illustration', 'Art', 'USD', '2013-11-26', 900.0, '2013-11-04 21:01:09', 1818.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Resurrection Mule Farm: Tim Crosby & The Lightning Strikes', 'Country & Folk', 'Music', 'USD', '2016-08-07', 1000.0, '2016-07-17 22:10:58', 1500.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['BattleStation', 'Video Games', 'Games', 'USD', '2012-12-03', 25000.0, '2012-11-26 20:36:27', 1.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "[\"Philip's Making A (small) Album\", 'Pop', 'Music', 'USD', '2013-12-22', 5000.0, '2013-11-26 03:13:26', 5235.34, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Nyx: The Haijun Chameleon', 'Video Games', 'Games', 'USD', '2015-08-23', 5000.0, '2015-07-24 21:47:59', 1191.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['\"The SITE where the real DEBATE goes on!\"', 'Web', 'Journalism', 'USD', '2015-09-13', 15000.0, '2015-08-14 01:15:03', 0.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['GET DRIVEN: An Open Source Film Tour of JENS PULVER | DRIVEN', 'Documentary', 'Film & Video', 'USD', '2011-04-16', 15000.0, '2011-03-18 00:40:29', 16450.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['The Brandon Lee Movie Project', 'Narrative Film', 'Film & Video', 'USD', '2013-09-07', 200000.0, '2013-08-08 18:01:19', 2338.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['eVolve restaurant project', 'Restaurants', 'Food', 'USD', '2015-03-29', 9550.0, '2015-02-27 01:39:57', 221.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['The Mother Of Dragons', 'Games', 'Games', 'EUR', '2017-12-31', 5000.0, '2017-12-11 09:33:45', 30308.5, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['ARC Continuum', 'Video Games', 'Games', 'USD', '2016-10-12', 100000.0, '2016-09-12 15:00:49', 7019.2, 'canceled']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['\"INICHE\" GRABACION CD - DOCUMENTAL EN MALI (kayes)', 'World Music', 'Music', 'EUR', '2017-12-31', 4000.0, '2017-12-01 19:41:16', 4158.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Jet-Pack Jenny and the Factor of 01 print edition.', 'Comics', 'Comics', 'USD', '2012-06-26', 400.0, '2012-04-27 11:15:59', 491.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Splatta Fish is ready to bring you their best album yet', 'Metal', 'Music', 'USD', '2014-10-06', 5000.0, '2014-09-06 07:25:02', 135.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Dungeon Dwellers', 'Tabletop Games', 'Games', 'USD', '2014-04-23', 3000.0, '2014-03-19 17:40:32', 8140.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['2014 LOS ANGELES H.P. Lovecraft Film Festival & CthulhuCon®', 'Festivals', 'Film & Video', 'USD', '2014-08-26', 9000.0, '2014-07-27 06:40:04', 12426.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Love is Luxury for ALL!!!!', 'Electronic Music', 'Music', 'USD', '2013-05-06', 5250.0, '2013-04-01 19:30:49', 5890.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Dancing Dog Gallery', 'Art', 'Art', 'USD', '2013-08-27', 8000.0, '2013-07-16 21:58:19', 12433.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['The Winecoff Fire Victims book publishing project', 'Nonfiction', 'Publishing', 'USD', '2017-09-28', 5300.0, '2017-08-29 02:01:55', 425.0, 'canceled']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "[\"THE DAHLS debut record 'Midnight Picnic' (Canceled)\", 'Country & Folk', 'Music', 'USD', '2010-07-01', 10000.0, '2010-04-24 04:55:59', 0.0, 'canceled']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['\"ZUR\" - Live action animation project.', 'Animation', 'Film & Video', 'USD', '2010-08-02', 5000.0, '2010-06-18 09:35:31', 75.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['A watch made by hand for an impeccable finish', 'Jewelry', 'Fashion', 'SEK', '2017-07-13', 50000.0, '2017-05-29 23:52:46', 15.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['The Tower of Transformation', 'Sculpture', 'Art', 'USD', '2011-08-24', 2400.0, '2011-08-04 20:58:57', 1020.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Neurons to Nirvana: Understanding Psychedelic Medicines', 'Documentary', 'Film & Video', 'USD', '2013-06-16', 35000.0, '2013-04-17 19:53:10', 40004.65, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['3D Cell Culture Platform (3D Scaffold)', '3D Printing', 'Technology', 'USD', '2015-11-19', 1000.0, '2015-10-20 22:11:24', 158.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Four Kings', 'Tabletop Games', 'Games', 'AUD', '2017-10-15', 5000.0, '2017-09-14 12:55:29', 5308.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Corazón Tijuana Community Garden', 'Food', 'Food', 'USD', '2011-05-19', 300.0, '2011-04-19 06:53:30', 366.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['CALL OF DUTY GHOSTS LAN TOURNAMENT ON PS4 IN GLASGOW', 'Video Games', 'Games', 'GBP', '2014-08-27', 6000.0, '2014-08-13 18:05:14', 0.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Burrito and Stuff', 'Food Trucks', 'Food', 'USD', '2014-10-25', 85000.0, '2014-09-25 18:02:03', 0.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Story App - Inspire Kids to Grow and Learn Interactively', \"Children's Books\", 'Publishing', 'USD', '2017-01-22', 10000.0, '2016-12-07 18:06:48', 259.0, 'canceled']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['TMYS (Canceled)', 'Nonfiction', 'Publishing', 'USD', '2016-02-12', 10000.0, '2015-12-29 20:59:05', 26.0, 'canceled']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Find Eddie - Feature comedy', 'Narrative Film', 'Film & Video', 'USD', '2014-03-01', 11000.0, '2013-12-31 00:39:22', 1335.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Animalia - An Arthouse Short Film', 'Shorts', 'Film & Video', 'GBP', '2016-08-14', 7000.0, '2016-07-15 21:14:43', 361.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Hear My Name | The New Album by Nikko Sherard', 'Music', 'Music', 'USD', '2013-11-30', 50000.0, '2013-10-21 21:39:37', 2312.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['New organization designs for the future of work', 'Technology', 'Technology', 'USD', '2017-09-08', 600.0, '2017-08-23 19:58:56', 640.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Cana Barn Raising', 'Architecture', 'Design', 'USD', '2016-03-08', 60000.0, '2016-02-07 05:52:12', 23690.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Luxury Light Piece Refreshes Your Home – Nymphs Lamp', 'Product Design', 'Design', 'EUR', '2017-02-22', 20000.0, '2017-01-23 00:03:15', 148828.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Vigilance Comic Book Series Relaunch', 'Comic Books', 'Comics', 'USD', '2017-12-28', 2500.0, '2017-11-23 02:49:12', 7012.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Circle of Mayhem: Jump in, stumble out.', 'Tabletop Games', 'Games', 'USD', '2016-11-29', 3000.0, '2016-10-29 04:43:43', 3270.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['KALEIDESCAPE', 'Electronic Music', 'Music', 'USD', '2015-03-10', 60000.0, '2015-02-23 04:00:14', 0.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['RPG Mobile Card Game', 'Mobile Games', 'Games', 'USD', '2015-06-12', 3000.0, '2015-04-13 17:33:37', 0.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Making Out Like a Virgin--survivors beyond sexual trauma', 'Nonfiction', 'Publishing', 'USD', '2016-10-02', 8500.0, '2016-08-24 18:44:15', 8969.32, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['North Pole to South Pole Expedition (Canceled)', 'Documentary', 'Film & Video', 'USD', '2015-10-15', 100000.0, '2015-08-16 18:46:52', 0.0, 'canceled']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Royal Clothing Take Over', 'Apparel', 'Fashion', 'USD', '2015-05-14', 10000.0, '2015-04-14 02:22:32', 0.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['eMotion', 'Apps', 'Technology', 'USD', '2015-08-21', 25000.0, '2015-07-22 01:15:54', 20.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "[\"Millo: The World's Smartest Smoothie Maker\", 'Product Design', 'Design', 'GBP', '2017-06-08', 80000.0, '2017-05-09 16:00:01', 82020.8, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['The WildSide', 'Television', 'Film & Video', 'CAD', '2015-08-07', 85000.0, '2015-06-18 00:20:40', 115.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['\"A Fiend In Need\" Art Print - 80s Metal x Dogs Playing Poker', 'Illustration', 'Art', 'USD', '2013-04-01', 1000.0, '2013-03-05 23:04:21', 2179.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Quick Jewelry Repairs', 'Web', 'Technology', 'USD', '2016-07-07', 1000.0, '2016-06-16 17:15:11', 1590.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Children of Earth and Star - an amazing illustrated story', 'Fiction', 'Publishing', 'USD', '2011-08-26', 4700.0, '2011-06-27 05:19:08', 285.0, 'canceled']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Party Like A Preschooler (Canceled)', \"Children's Books\", 'Publishing', 'USD', '2014-02-08', 5000.0, '2014-01-09 20:50:25', 85.0, 'canceled']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Let Me Die', 'Fiction', 'Publishing', 'USD', '2012-08-17', 20000.0, '2012-07-17 03:04:57', 1635.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Jonny Keys\\' First Album: \"So Far\"', 'Music', 'Music', 'USD', '2017-05-06', 6000.0, '2017-04-05 23:10:20', 6257.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['THE TOURNIQUET ARK - ONWARD TO FREEDOM - the album', 'Metal', 'Music', 'USD', '2013-10-14', 7000.0, '2013-08-30 21:26:27', 8566.77, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['The Smelly Sock: The Only Dog Toy That Smells Like You!', 'Product Design', 'Design', 'USD', '2017-07-26', 10000.0, '2017-06-26 15:28:52', 10684.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Gem Genie - A brand new way to pack and organize jewelry!', 'Accessories', 'Fashion', 'USD', '2014-11-20', 20000.0, '2014-10-16 09:54:01', 21145.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Project Puppy (Suspended)', 'Web', 'Journalism', 'USD', '2015-02-06', 2000.0, '2014-12-08 23:35:27', 0.0, 'suspended']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Monicas future workshop', 'Painting', 'Art', 'NOK', '2015-10-03', 50000.0, '2015-09-03 19:14:17', 0.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Welcome to My Madness: the Art of L Jamal Walton (Canceled)', 'Art Books', 'Publishing', 'USD', '2013-08-13', 1500.0, '2013-07-11 17:06:39', 255.0, 'canceled']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Hand-Painted, Nature-Inspired Bleach Shirts', 'Apparel', 'Fashion', 'USD', '2017-07-19', 500.0, '2017-06-19 22:47:17', 100.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Justin Tyme 12 Part Graphic Novel Series (Canceled)', 'Graphic Novels', 'Comics', 'USD', '2016-05-20', 15000.0, '2016-05-06 15:20:52', 0.0, 'canceled']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['King of the Hat', 'Video Games', 'Games', 'CAD', '2017-11-07', 10000.0, '2017-09-08 18:03:29', 13471.65, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "[\"VIDDY: The world's cutest DIY pinhole camera\", 'Photography', 'Photography', 'GBP', '2014-09-08', 18000.0, '2014-07-28 10:12:54', 39215.42, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Handmade postcards and jars with reasons for love', 'Art', 'Art', 'AUD', '2014-07-27', 500.0, '2014-06-27 18:36:18', 0.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "[\"Stephanie Madsen's Debut Original Album\", 'Music', 'Music', 'USD', '2015-10-30', 6000.0, '2015-10-01 18:05:37', 9216.0, 'undefined']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "[\"Let's get Man Hut on the Market!!!!\", 'Food', 'Food', 'USD', '2014-07-25', 6000.0, '2014-06-25 18:29:08', 10.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Disconnected: Why Men Unplug and What Can Be Done About It', 'Nonfiction', 'Publishing', 'USD', '2014-09-30', 10000.0, '2014-08-29 16:30:54', 10015.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['The Sword of War (Canceled)', 'Video Games', 'Games', 'EUR', '2015-10-30', 5000.0, '2015-09-30 00:17:26', 17.0, 'canceled']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Chiro Samhain Art Glass beads and Jewellery', 'Product Design', 'Design', 'GBP', '2017-11-12', 2000.0, '2017-10-13 22:38:36', 82.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "[\"The World's Largest Rube Goldberg Machine\", 'Technology', 'Technology', 'USD', '2014-11-08', 5000.0, '2014-10-09 22:53:26', 0.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['577 RECORDS CURATOR SERIES 2012', 'Music', 'Music', 'USD', '2012-07-01', 2000.0, '2012-06-01 17:34:52', 2011.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Silhouette Awards- Event for Women Filmmakers', 'Film & Video', 'Film & Video', 'USD', '2017-08-10', 8500.0, '2017-07-16 18:46:02', 21.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Monumentus', 'Live Games', 'Games', 'USD', '2015-07-11', 20000.0, '2015-05-27 04:56:10', 242.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['APPARATUS', 'Performances', 'Dance', 'USD', '2014-07-03', 5000.0, '2014-06-04 22:24:57', 5066.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Help Oscar fund his EP and create 7\" vinyl record', 'Electronic Music', 'Music', 'USD', '2012-03-21', 440.0, '2012-02-11 04:40:42', 460.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['1 S u r g e', 'Technology', 'Technology', 'USD', '2017-10-06', 20000.0, '2017-09-06 23:10:20', 0.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Esington Glass: The Ultimate Productivity Timer', 'Product Design', 'Design', 'USD', '2015-01-28', 5000.0, '2014-12-29 22:08:14', 196560.5, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['The Zombinator 2 (Canceled)', 'Narrative Film', 'Film & Video', 'USD', '2012-09-14', 55000.0, '2012-08-15 22:30:15', 400.0, 'canceled']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Grendel Tales: War Child', 'Shorts', 'Film & Video', 'USD', '2012-05-14', 2500.0, '2012-04-14 15:00:42', 210.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Solo Photography Exhibition: Picking up the Pieces', 'Photography', 'Photography', 'USD', '2014-04-29', 5000.0, '2014-04-12 00:00:19', 1970.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Newsroom Agent - Where Journalists Find Better Jobs', 'Journalism', 'Journalism', 'USD', '2015-12-19', 22000.0, '2015-11-16 06:09:35', 149.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Hymn of Unity', 'Animation', 'Film & Video', 'USD', '2012-05-18', 1500.0, '2012-03-19 21:02:14', 0.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Chuck (a film about depression). Please help send it to SXSW', 'Shorts', 'Film & Video', 'USD', '2013-08-25', 5000.0, '2013-07-11 23:18:42', 5144.63, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Sinners Comic Book - Issue 1 - Hope is Dead', 'Comic Books', 'Comics', 'GBP', '2015-02-10', 1200.0, '2015-01-11 16:09:13', 1442.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['8Mode Multifunction Fidget Spinner', 'Gadgets', 'Technology', 'USD', '2017-07-27', 2250.0, '2017-07-17 19:37:18', 7740.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Blood Like Fire (Songs for Syria) - A Concept Album.', 'Rock', 'Music', 'USD', '2013-10-16', 6000.0, '2013-10-02 17:11:24', 6461.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Jon Owens - \"The Rise\" & \"The Fall\" - 2 EP Project', 'Indie Rock', 'Music', 'USD', '2014-02-17', 40000.0, '2014-01-01 05:23:22', 41000.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['The Chronicles of The Few and Cursed', 'Anthologies', 'Comics', 'USD', '2017-11-09', 9000.0, '2017-10-02 18:00:05', 36756.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Yelsa Album #1 (!!!!!)', 'Music', 'Music', 'USD', '2014-11-01', 1000.0, '2014-09-05 21:20:12', 1130.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Sister Anne an ADULT ANIMATED SERIES', 'Animation', 'Film & Video', 'USD', '2010-12-03', 6000.0, '2010-09-04 18:56:50', 230.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Strange Snacks: The Most Interesting Snacks in The World!', 'Food', 'Food', 'USD', '2017-11-28', 468.0, '2017-11-07 06:26:29', 2328.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['DeComposition - Short Film', 'Film & Video', 'Film & Video', 'USD', '2014-06-19', 5000.0, '2014-05-20 21:23:57', 6431.0, 'undefined']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Kingston University BA Fashion show 2015', 'Fashion', 'Fashion', 'GBP', '2015-02-17', 2000.0, '2014-12-19 20:41:29', 2861.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Foldable.Me', 'Product Design', 'Design', 'USD', '2012-04-24', 2500.0, '2012-03-26 11:57:34', 25355.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['BEHOLD A PALE HORSE needs Paul Reveres!', 'Documentary', 'Film & Video', 'USD', '2013-06-03', 90000.0, '2013-05-04 19:54:00', 4659.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "[\"Be a part of dust from 1000 yr's next album\", 'Indie Rock', 'Music', 'USD', '2011-12-19', 500.0, '2011-11-04 18:10:24', 590.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Top Gun Over Israel: A 60-minute documentary', 'Film & Video', 'Film & Video', 'USD', '2012-12-31', 95000.0, '2012-11-01 16:04:46', 0.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Dale Lari: A Global Soccer Project', 'Documentary', 'Film & Video', 'USD', '2014-08-04', 24000.0, '2014-07-01 08:25:03', 26802.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "[\"BRIAN COLLINS' NEW ALBUM: HARDER I RUN\", 'Country & Folk', 'Music', 'USD', '2013-08-24', 20000.0, '2013-07-10 06:00:45', 23125.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['\"The Divided Brain\" documentary', 'Documentary', 'Film & Video', 'USD', '2017-06-01', 60000.0, '2017-05-02 00:05:21', 60340.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Authentic Crepes from Paris', 'Food', 'Food', 'USD', '2014-02-16', 9000.0, '2014-01-17 06:51:50', 100.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Unsolicited Advice: 2016 Weekly Planner & Journal', 'Calendars', 'Publishing', 'USD', '2015-11-14', 2600.0, '2015-10-15 06:39:18', 42362.22, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['The Army Of Comedy', 'Design', 'Design', 'USD', '2017-09-14', 20000.0, '2017-08-16 19:58:39', 6936.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Smart-Snap-Mount: Magnetic mount 4 all your mobile devices', 'Product Design', 'Design', 'GBP', '2014-06-28', 10800.0, '2014-05-29 00:22:24', 206.0, 'canceled']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Shower Chanteys!', 'Country & Folk', 'Music', 'USD', '2017-12-25', 2000.0, '2017-10-26 19:19:43', 2175.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Little Owls - Saving the Earth One Baby Bum At A Time', 'Fashion', 'Fashion', 'USD', '2010-11-27', 1800.0, '2010-10-28 21:40:43', 160.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Circle of Shame!!', 'Tabletop Games', 'Games', 'USD', '2017-05-10', 12000.0, '2017-04-10 03:32:07', 238.0, 'canceled']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Androx Demon of Fire', 'Video Games', 'Games', 'USD', '2012-09-21', 2000.0, '2012-09-06 00:31:18', 25.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['PlastaPrint3D', '3D Printing', 'Technology', 'EUR', '2016-04-08', 15000.0, '2016-03-09 17:29:10', 37.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Save The Jacoby', 'Art', 'Art', 'USD', '2014-06-01', 10000.0, '2014-05-09 20:48:10', 10126.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "[\"Amy's Cupcake Shoppe, Bringing sweet treats to Hopkins\", 'Small Batch', 'Food', 'USD', '2016-03-23', 30000.0, '2016-02-07 16:18:05', 30675.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['BITTER MELON, an H.P. Mendoza film', 'Comedy', 'Film & Video', 'USD', '2017-09-28', 25000.0, '2017-07-30 05:10:13', 52086.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['The 2013 Cut Paper Art Calendar', 'Art', 'Art', 'USD', '2012-12-12', 2200.0, '2012-11-21 00:58:19', 5583.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['EMPACK: The Multi-Functional Weight Training Backpack', 'Product Design', 'Design', 'USD', '2016-02-24', 18000.0, '2016-01-25 08:09:45', 140556.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['EduExo: The First Robotic Exoskeleton Kit for STEM Education', 'Technology', 'Technology', 'CHF', '2017-06-07', 8000.0, '2017-05-08 13:54:14', 21687.77, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Yet Another Castle', 'Publishing', 'Publishing', 'CAD', '2017-05-17', 5000.0, '2017-04-17 02:48:41', 5.0, 'canceled']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['NW Wooden Boat Building School', 'Woodworking', 'Crafts', 'USD', '2015-04-12', 20000.0, '2015-03-28 05:35:44', 30.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Broken Side of Time, a dark drama from Gorman Bechard', 'Narrative Film', 'Film & Video', 'USD', '2012-07-15', 1000.0, '2012-05-16 23:14:58', 2584.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['OSEPP 101 Sensor Kit (Arduino Compatible & Production Ready)', 'DIY Electronics', 'Technology', 'CAD', '2016-03-17', 12000.0, '2016-02-01 14:04:19', 13888.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['AFTER DISASTERS', 'Documentary', 'Film & Video', 'USD', '2012-06-08', 12000.0, '2012-05-09 22:42:02', 12000.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Garden Bed', 'Architecture', 'Design', 'USD', '2014-12-25', 1000.0, '2014-10-26 17:23:40', 166.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['The Umerican Survival Guide', 'Tabletop Games', 'Games', 'USD', '2017-04-13', 7000.0, '2017-03-11 14:06:57', 17698.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['The Famous Opera for the Beautiful People', 'Classical Music', 'Music', 'USD', '2012-01-01', 48000.0, '2011-11-16 18:53:25', 424.95, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Tinker Kits', 'Design', 'Design', 'GBP', '2013-11-14', 8000.0, '2013-10-15 12:00:01', 3040.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Soul3Beads', 'Art', 'Art', 'USD', '2015-04-12', 10000.0, '2015-03-13 04:21:50', 0.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['2017-18 Fireball Newsflash Crosswords', 'Puzzles', 'Games', 'USD', '2017-03-06', 8000.0, '2017-02-08 04:00:55', 8015.05, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['ReDiscover Publication', 'Public Art', 'Art', 'AUD', '2016-10-22', 2500.0, '2016-09-22 04:51:01', 6325.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Trinity: Lock Pick Learning Kit', 'Technology', 'Technology', 'USD', '2017-06-16', 500.0, '2017-05-17 16:23:20', 7326.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['The Carbon Standoff Wallet (Canceled)', 'Product Design', 'Design', 'USD', '2016-01-20', 4000.0, '2015-12-21 17:50:36', 11.0, 'canceled']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Solving Chess (Yes, solving chess) STEP 1 of 3', 'Technology', 'Technology', 'USD', '2014-05-21', 2000.0, '2014-03-22 16:07:34', 860.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Be A Part of the Action! New Record Seeks Fiscal Midwives! Scandal Rocks Folk Scene!', 'Country & Folk', 'Music', 'USD', '2010-05-15', 3000.0, '2010-04-12 19:35:01', 3182.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['I-PRINT-PINEAPPLES', 'Mixed Media', 'Art', 'EUR', '2016-08-03', 1000.0, '2016-07-04 14:44:09', 226.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Corpus Florens', 'Sculpture', 'Art', 'EUR', '2016-08-16', 6800.0, '2016-06-17 15:28:22', 120.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Butchers vs Orcs!', 'Tabletop Games', 'Games', 'GBP', '2017-03-26', 10.0, '2017-03-19 16:02:00', 200.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['the Pebblestone - Your Personal Mind Coach', 'Technology', 'Technology', 'EUR', '2014-07-06', 100000.0, '2014-06-06 18:52:23', 104924.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Halloween Twinkle Treat Basket', 'Product Design', 'Design', 'USD', '2015-07-31', 5000.0, '2015-06-01 09:16:03', 10.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['TOUR GIRLS - 6 episode web series', 'Webseries', 'Film & Video', 'GBP', '2014-05-21', 3000.0, '2014-04-21 10:14:51', 3000.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Improve a teens photography with money', 'Nature', 'Photography', 'GBP', '2017-06-24', 500.0, '2017-04-25 16:47:51', 32.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Full Walrus hits the road!', 'Indie Rock', 'Music', 'USD', '2017-08-13', 500.0, '2017-07-09 17:41:49', 520.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "[\"Puzzle'n'Slash\", 'Video Games', 'Games', 'CAD', '2015-04-02', 40000.0, '2015-03-03 23:58:31', 1585.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['The relic journal/sketch book', 'Mixed Media', 'Art', 'USD', '2012-05-08', 7000.0, '2012-03-29 14:03:35', 285.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Think Of is here for you so you can think of them', 'Publishing', 'Publishing', 'CAD', '2017-07-18', 426006.0, '2017-06-12 00:42:20', 25.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['SteadXP - The Future of Video Stabilization', 'Camera Equipment', 'Technology', 'EUR', '2015-10-10', 150000.0, '2015-09-10 17:59:08', 505621.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Storm Perry \"Storm-A-Naughty\" album release Campaign.', 'Hip-Hop', 'Music', 'USD', '2016-07-30', 10000.0, '2016-06-30 00:40:14', 0.0, 'canceled']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Worlds best peanut butter and jelly sandwich (Canceled)', 'Food', 'Food', 'USD', '2014-08-09', 3000.0, '2014-07-10 14:05:05', 20.0, 'canceled']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['TheVista-A Journey of a Bacha Bazi Boy', 'Fiction', 'Publishing', 'USD', '2016-02-21', 2500.0, '2016-01-22 18:37:37', 0.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Age Of Legends: Epic adventures, small rules, tabletop RPG', 'Tabletop Games', 'Games', 'GBP', '2015-12-05', 1000.0, '2015-11-04 12:59:41', 3721.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['The Focus Planner: Best Designed Planner for achieving goals', 'Product Design', 'Design', 'GBP', '2016-07-22', 10000.0, '2016-06-07 13:55:29', 23232.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "[\"OSA's Art Nouveau Inspired Midsummer Night's Dream\", 'Theater', 'Theater', 'USD', '2014-01-19', 1600.0, '2013-12-23 21:24:30', 2070.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['TarDisk 256GB | MacBook Storage Expansion Module', 'Hardware', 'Technology', 'USD', '2015-03-10', 32500.0, '2015-02-04 14:21:31', 127838.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['CUBECORD - compact and stylish iPhone charger cord solution', 'Product Design', 'Design', 'USD', '2015-03-30', 9000.0, '2015-02-18 02:28:49', 4693.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['\"Relative Talent\" A Reality Singing Competition', 'Webseries', 'Film & Video', 'USD', '2010-10-05', 100000.0, '2010-07-07 17:13:12', 1000.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['The Methuselah Generation: The Science of Living Forever', 'Documentary', 'Film & Video', 'USD', '2011-12-27', 30000.0, '2011-10-28 22:30:50', 31632.5, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Fund My Pottery Passion', 'Ceramics', 'Art', 'USD', '2014-12-21', 15400.0, '2014-10-22 05:52:17', 145.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Stilts for Dachshunds T-Shirts', 'Fashion', 'Fashion', 'USD', '2012-11-02', 825.0, '2012-10-05 20:04:57', 2162.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['From The Bottom: The Life of Myrna', 'Nonfiction', 'Publishing', 'USD', '2012-05-02', 2500.0, '2012-04-02 06:31:29', 0.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Clash of the Casuals , public disorder', 'Tabletop Games', 'Games', 'GBP', '2016-11-21', 5000.0, '2016-10-22 10:14:36', 588.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Book- connection between humans and animals', 'Illustration', 'Art', 'DKK', '2015-03-15', 10000.0, '2015-02-13 05:08:32', 105.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['RECKLESS DECK: Solving the Problem of \"What Should I Draw?\"', 'Illustration', 'Art', 'USD', '2017-04-19', 7500.0, '2017-03-20 15:05:35', 68196.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Documentary of Sprawling Japanese Forests and Metropolises', 'Photography', 'Photography', 'USD', '2012-06-15', 500.0, '2012-05-24 21:50:14', 672.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Internal Pain', 'Photobooks', 'Photography', 'USD', '2015-08-01', 5000.0, '2015-07-02 18:03:28', 110.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Lets.Rise.The.Phoenix', 'Rock', 'Music', 'USD', '2014-03-04', 3000.0, '2014-01-03 00:19:31', 0.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Cascade Youth Dance: Commonwealth', 'Residencies', 'Dance', 'GBP', '2014-06-30', 1000.0, '2014-05-26 20:09:32', 1170.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Surveillance Valley: The Rise of the Google-Military Complex', 'Print', 'Journalism', 'USD', '2015-03-25', 15000.0, '2015-02-23 06:10:28', 18814.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Seduce Me 2: The Demon War', 'Video Games', 'Games', 'USD', '2015-12-01', 10000.0, '2015-10-31 05:42:32', 23233.29, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Medieval Story Land', 'Theater', 'Theater', 'USD', '2012-08-04', 2500.0, '2012-06-05 03:49:14', 3599.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Project GT86', 'Webseries', 'Film & Video', 'EUR', '2016-09-25', 30000.0, '2016-07-27 10:47:22', 0.0, 'suspended']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Thundercluck™', 'Animation', 'Film & Video', 'USD', '2013-09-04', 2500.0, '2013-08-05 16:00:08', 5269.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['A public photo journal of your life! Visual Storytelling.', 'Apps', 'Technology', 'USD', '2015-03-22', 50000.0, '2015-02-21 00:45:19', 1.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Pater - A Sci-Fi Thriller', 'Shorts', 'Film & Video', 'USD', '2013-11-04', 5000.0, '2013-10-04 23:20:22', 1313.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Help my Elephant dung paper travel the world', 'Conceptual Art', 'Art', 'USD', '2015-11-13', 5000.0, '2015-10-14 18:01:05', 12.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Purgatory : Vol 1', 'Webcomics', 'Comics', 'USD', '2017-07-01', 3500.0, '2017-06-01 21:45:27', 8733.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['My Only Hope! (Suspended)', 'Gaming Hardware', 'Games', 'GBP', '2015-04-27', 1000.0, '2015-03-18 21:39:08', 0.0, 'suspended']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Link-It! A different kind of game for indoor fun!', 'Games', 'Games', 'USD', '2013-07-31', 30000.0, '2013-06-01 02:44:17', 247.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Beyond the Wall: Episode 1 \"Take the Black\"', 'Live Games', 'Games', 'USD', '2015-06-26', 450.0, '2015-06-07 16:17:12', 855.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Paranormal Short Horror Film', 'Horror', 'Film & Video', 'GBP', '2017-12-28', 3000.0, '2017-11-28 16:35:43', 0.0, 'canceled']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Compositions by Nik Geerken (Canceled)', 'World Music', 'Music', 'USD', '2015-05-09', 10000.0, '2015-03-10 04:05:52', 1.0, 'canceled']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['The Mindful Notebook by Corso.com', 'Product Design', 'Design', 'USD', '2017-11-10', 10000.0, '2017-09-11 08:18:58', 37709.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Music That Matters: \"Think-Out\" NOT \"Sell-Out\"', 'World Music', 'Music', 'USD', '2012-08-13', 1700.0, '2012-07-17 23:31:00', 0.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['The Sketchbook, An Animated Short Film', 'Animation', 'Film & Video', 'USD', '2014-06-28', 198000.0, '2014-05-12 17:01:30', 12894.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Souler Game', 'Video Games', 'Games', 'USD', '2013-07-04', 4000.0, '2013-06-04 22:01:08', 30.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "[\"Safer Children's Furniture\", 'Product Design', 'Design', 'USD', '2017-09-01', 199000.0, '2017-08-02 17:37:00', 18.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Smart-Gluten Free: Introduction of diet specific meals', 'Food', 'Food', 'GBP', '2014-01-03', 10000.0, '2013-12-04 15:22:30', 27.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Barlight Safety Platform For Bicycle Lights', 'Product Design', 'Design', 'GBP', '2015-06-10', 15000.0, '2015-05-11 12:37:53', 521.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Dark Beach #2', 'Comic Books', 'Comics', 'USD', '2017-02-17', 4000.0, '2017-01-18 06:06:53', 5057.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Another Day - Short Film/Music Video', 'Shorts', 'Film & Video', 'USD', '2013-09-19', 300.0, '2013-09-04 22:04:29', 15.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Berlin Boombox', 'Product Design', 'Design', 'USD', '2012-04-25', 14000.0, '2012-03-26 18:38:37', 20071.16, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Soul Eco', 'Fashion', 'Fashion', 'USD', '2015-12-31', 10000.0, '2015-11-20 18:11:14', 820.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Mocean Drinkware: Worlds most versatile unbreakable glasses!', 'Product Design', 'Design', 'EUR', '2015-03-05', 65000.0, '2015-02-02 20:16:52', 6233.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['The New Gas Kiln Project (Canceled)', 'Crafts', 'Crafts', 'USD', '2014-02-01', 10000.0, '2014-01-02 21:47:10', 615.0, 'canceled']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['03 Dodge Caravan', 'Hip-Hop', 'Music', 'USD', '2016-08-14', 1500.0, '2016-07-15 21:29:15', 1500.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['JP Activewear - Pilates & Yoga Inspired Clothing', 'Apparel', 'Fashion', 'USD', '2016-11-17', 12000.0, '2016-10-18 21:20:10', 4.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Smoothie Delivery Vending System', 'Hardware', 'Technology', 'USD', '2016-01-01', 100000.0, '2015-11-02 19:13:55', 135.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Debut single music video for upcoming album (Canceled)', 'Rock', 'Music', 'GBP', '2016-05-10', 2000.0, '2016-04-10 17:29:38', 0.0, 'canceled']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Super Kaiju Battle Squadron DINO FORCE!', 'Publishing', 'Publishing', 'USD', '2017-05-24', 350.0, '2017-05-02 15:44:01', 350.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['The \"Artist Incubator\" by Desi Music Entertainment', 'World Music', 'Music', 'USD', '2015-03-29', 30000.0, '2015-02-12 16:59:35', 32009.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Abatis Tour 2012', 'Rock', 'Music', 'USD', '2012-08-27', 850.0, '2012-07-28 02:04:08', 2240.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Darkside Stories', 'Horror', 'Film & Video', 'USD', '2017-07-28', 50.0, '2017-05-29 01:19:38', 320.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['HOW COULD YOU? clothing by mia weiner GET STITCHED!', 'Textiles', 'Art', 'USD', '2016-03-16', 20000.0, '2016-02-16 00:47:00', 21101.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Opera on Tap Berlin First Anniversary Production', 'Classical Music', 'Music', 'EUR', '2015-12-24', 7500.0, '2015-12-08 01:37:38', 7737.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Fight Tyme Live Pay-Per-Stream Combat Sports Network App', 'Apps', 'Technology', 'USD', '2017-12-15', 11781.0, '2017-11-12 03:10:40', 0.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Strictly Sacred: The Girl Trouble documentary', 'Documentary', 'Film & Video', 'USD', '2012-10-13', 5000.0, '2012-08-14 19:21:37', 5343.22, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Vere Sandal Company, USA - 2011 Collection', 'Fashion', 'Fashion', 'USD', '2011-03-01', 12000.0, '2011-01-03 16:11:55', 56618.77, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Talent Music Master Courses in Italy.', 'Music', 'Music', 'EUR', '2016-10-09', 4000.0, '2016-09-09 18:54:55', 0.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['POSITIVE - a Short Film on Breaking HIV Stigma', 'Drama', 'Film & Video', 'AUD', '2017-09-30', 3500.0, '2017-08-18 04:15:30', 282.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['SEMAPHON-400 SEMANTIC PHONE NUMBERS', 'Apps', 'Technology', 'USD', '2016-07-15', 10000.0, '2016-06-15 03:58:48', 0.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Caustic Soda - A Year Future Narco Romance', 'Comics', 'Comics', 'USD', '2013-08-01', 5000.0, '2013-07-02 17:39:12', 7441.6, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['No One Else Will', 'Shorts', 'Film & Video', 'AUD', '2016-07-11', 6000.0, '2016-05-12 05:17:38', 1261.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['A Woman Called Job-Completed-Edited-Feature-FINI$H PO$T $$!!', 'Narrative Film', 'Film & Video', 'USD', '2012-09-09', 52326.0, '2012-07-11 03:54:18', 330.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Yuno Is Making a Record!', 'Music', 'Music', 'USD', '2012-09-15', 2000.0, '2012-08-16 18:15:30', 2777.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Vienna Design Painting Series', 'Painting', 'Art', 'USD', '2010-12-12', 3500.0, '2010-11-30 00:01:58', 4435.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['MotherBone™PiOne™', 'Hardware', 'Technology', 'USD', '2014-05-18', 60000.0, '2014-04-18 20:56:28', 4270.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['B.Sane Snow Bikes', 'Product Design', 'Design', 'USD', '2017-09-06', 25000.0, '2017-07-08 04:29:07', 1.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['In Their Own Worlds', 'Fine Art', 'Photography', 'USD', '2015-05-09', 5000.0, '2015-04-08 15:00:45', 15960.34, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Timespinner', 'Video Games', 'Games', 'USD', '2014-07-26', 50000.0, '2014-06-26 04:00:51', 176667.81, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Hamster Wheel Entertainment, LLC', 'Food Trucks', 'Food', 'USD', '2016-11-05', 4000.0, '2016-09-21 09:48:09', 862.0, 'canceled']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Balance Worldwide - Clothing for cause', 'Apparel', 'Fashion', 'USD', '2016-02-25', 1000.0, '2016-01-26 21:22:57', 158.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['JUNE WEST records an album', 'Pop', 'Music', 'USD', '2017-01-04', 4240.0, '2016-12-05 17:31:42', 5245.33, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['little Miss Islam', 'Drama', 'Film & Video', 'USD', '2017-02-03', 45000.0, '2017-01-04 06:48:30', 55.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Little Stinker', \"Children's Books\", 'Publishing', 'USD', '2013-07-16', 8000.0, '2013-06-14 14:46:47', 8105.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "[\"A Photo Tour of America's Greatest Masonic Cemeteries\", 'Photography', 'Photography', 'USD', '2010-10-06', 4000.0, '2010-08-08 21:36:53', 50.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Hell Dorado Miniature Skirmish Game: Inferno Expansion', 'Tabletop Games', 'Games', 'USD', '2013-03-22', 15000.0, '2013-02-19 19:58:00', 129800.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Ishmael Returns: A Mural for Spartanburg', 'Public Art', 'Art', 'USD', '2014-03-11', 2500.0, '2014-02-19 20:14:10', 2840.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['NYC Local Kimchi Company', 'Food', 'Food', 'USD', '2010-07-20', 1800.0, '2010-06-18 02:57:19', 920.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['The Songbag (Canceled)', 'Fashion', 'Fashion', 'CAD', '2015-10-29', 15000.0, '2015-09-29 13:45:15', 3694.0, 'canceled']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Bali bomb survivor wants to complete full length metal CD', 'Metal', 'Music', 'USD', '2013-06-05', 3000.0, '2013-05-06 21:42:12', 25.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Future Funk Squad - Forgotten World [4th Studio Album]', 'Electronic Music', 'Music', 'GBP', '2015-03-20', 8000.0, '2015-01-19 18:42:45', 292.0, 'canceled']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Hollywood Superman Series', 'Film & Video', 'Film & Video', 'USD', '2017-04-10', 5500.0, '2017-03-06 06:11:40', 5571.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "[\"GreenToGo: Durham's reusable takeout container service\", 'Restaurants', 'Food', 'USD', '2016-12-06', 24080.0, '2016-10-22 15:22:04', 26242.18, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Cut and Fold: fun modern furniture', 'Design', 'Design', 'CAD', '2014-10-10', 3300.0, '2014-09-10 03:45:04', 6182.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['VECTO', 'Shorts', 'Film & Video', 'DKK', '2016-02-28', 6000.0, '2016-01-29 18:22:38', 0.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Free Youth Ministry', 'Faith', 'Music', 'USD', '2015-09-11', 2000.0, '2015-08-12 05:10:50', 150.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['STARGATE - Restauration du costume original de Zipacna', 'Science Fiction', 'Film & Video', 'EUR', '2017-10-22', 600.0, '2017-09-05 20:44:16', 1069.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Coffee Trail Book', 'Nonfiction', 'Publishing', 'GBP', '2015-03-23', 12817.0, '2015-02-23 21:29:49', 776.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Go Quietly', 'Drama', 'Film & Video', 'USD', '2016-07-28', 3300.0, '2016-06-28 23:17:37', 3300.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Punks Against Abbott: Just kill the Cunt (Suspended)', 'Punk', 'Music', 'AUD', '2014-11-17', 1600.0, '2014-10-17 06:51:03', 0.0, 'suspended']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "[\"Workin' It Out (Canceled)\", 'Shorts', 'Film & Video', 'USD', '2013-10-18', 1750.0, '2013-09-27 08:37:02', 0.0, 'canceled']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "[\"Let's Go to the Doctor! Helping kids on the Autism Spectrum\", 'Mobile Games', 'Games', 'AUD', '2017-07-17', 35000.0, '2017-06-17 04:59:12', 5366.0, 'canceled']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Rage Cube: When you see red, punch this instead!', 'Design', 'Design', 'USD', '2018-01-01', 15000.0, '2017-11-29 01:54:38', 88.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['OFFSITE: modulating systems and society', 'Nonfiction', 'Publishing', 'USD', '2011-12-29', 10000.0, '2011-11-29 23:21:18', 112.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Sin Matador', 'Shorts', 'Film & Video', 'USD', '2012-05-14', 20000.0, '2012-04-18 03:26:39', 20090.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['\"Orchard City Kitchen\" to open Fall 2014', 'Restaurants', 'Food', 'USD', '2014-10-05', 25000.0, '2014-09-08 18:08:47', 53085.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['the SOUVENIR CD Album project', 'Music', 'Music', 'USD', '2013-04-21', 6500.0, '2013-03-21 18:46:21', 152.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "[\"Talent That Can't Be Thrown Away-HipHop\", 'Hip-Hop', 'Music', 'USD', '2017-08-05', 15000.0, '2017-06-06 15:20:01', 0.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Origin Series Part II: The book & new art prints by Ninjabot', 'Illustration', 'Art', 'USD', '2013-10-18', 13000.0, '2013-09-17 12:35:53', 16050.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['THE GOLF BAG BEER GLASS: Win the 19th Hole', 'Product Design', 'Design', 'USD', '2017-05-25', 10000.0, '2017-04-25 19:47:55', 349.0, 'canceled']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['KosmoSuna \"Théiaphée\" EP Recording', 'Pop', 'Music', 'EUR', '2017-04-19', 7200.0, '2017-03-18 09:22:45', 1295.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['The Hoodie That Turns Into A Pillow', 'Product Design', 'Design', 'USD', '2015-01-02', 20000.0, '2014-11-18 17:29:29', 5246.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Sex, Blood and History (Canceled)', 'Theater', 'Theater', 'USD', '2013-06-11', 1000.0, '2013-04-27 02:20:21', 195.0, 'canceled']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['INFECTIOUS', 'Film & Video', 'Film & Video', 'USD', '2013-07-01', 35000.0, '2013-05-02 19:15:02', 543.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Everything canned', 'Food', 'Food', 'AUD', '2017-08-29', 1100.0, '2017-07-19 02:46:13', 1.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Blenheim London 6180 Watch', 'Product Design', 'Design', 'GBP', '2016-01-13', 3000.0, '2015-12-14 21:06:55', 3346.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "[\"F'ing Zombies (Short POV Film)\", 'Film & Video', 'Film & Video', 'USD', '2016-05-25', 600.0, '2016-05-18 05:03:40', 600.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Strive', 'Plays', 'Theater', 'GBP', '2015-06-12', 30000.0, '2015-04-13 22:11:27', 1.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Swedish Beverages in the USA (Canceled)', 'Food', 'Food', 'USD', '2015-11-01', 60000.0, '2015-10-02 18:02:09', 0.0, 'canceled']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "[\"Raphael's Thesis Film\", 'Animation', 'Film & Video', 'USD', '2014-12-20', 2500.0, '2014-11-20 04:10:11', 2550.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['The Impending Peace Project: Street Art & Social Commentary', 'Photography', 'Photography', 'USD', '2013-11-03', 3000.0, '2013-10-04 22:59:52', 542.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['The Bad Lands Obstacle Course', 'Design', 'Design', 'USD', '2014-09-27', 75000.0, '2014-07-29 18:02:14', 30.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Pactivist: Making dreams come true—two or more—at a time.', 'Web', 'Technology', 'USD', '2015-04-02', 33000.0, '2015-02-28 13:52:17', 827.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Njord: Ocean environmental monitoring buoy platform', 'Robots', 'Technology', 'DKK', '2016-08-31', 30000.0, '2016-07-02 00:23:11', 620.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['TRUE ORIGINALS', 'Footwear', 'Fashion', 'EUR', '2017-08-14', 3000.0, '2017-06-30 15:31:38', 7243.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Guild Guardians', 'Playing Cards', 'Games', 'USD', '2014-09-14', 500000.0, '2014-08-15 04:24:00', 80.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Open KS Lounge - Gaming Lounge', 'Video Games', 'Games', 'USD', '2015-06-15', 150000.0, '2015-04-16 12:50:23', 0.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Oli - Measure performance in the gym. (Canceled)', 'Wearables', 'Technology', 'USD', '2015-04-26', 50000.0, '2015-03-11 23:29:11', 3551.0, 'canceled']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['conservation of bees', 'Spaces', 'Food', 'GBP', '2014-08-22', 1700.0, '2014-07-23 19:04:45', 3.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['the man who made it to his dreams (Canceled)', 'Drama', 'Film & Video', 'USD', '2016-08-01', 40000.0, '2016-06-03 18:46:08', 0.0, 'canceled']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['PAINTINGS AND THEIR INTERIOR MUSIC', 'Painting', 'Art', 'USD', '2016-06-18', 3000.0, '2016-05-29 02:22:25', 0.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Obeewax | beeswax candle | Love Light Ninja', 'Product Design', 'Design', 'EUR', '2016-11-07', 3000.0, '2016-10-14 00:09:40', 876.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Albatross Galway', 'Food', 'Food', 'EUR', '2017-07-08', 2500.0, '2017-06-08 22:30:00', 2860.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Answap', 'Web', 'Technology', 'GBP', '2015-12-18', 60000.0, '2015-11-18 19:21:19', 0.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Sandwich Haikus: An Illustrated Collection', 'Poetry', 'Publishing', 'USD', '2017-03-02', 1500.0, '2017-01-31 18:56:07', 3416.02, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['An Uncomfortable Conversation About Race', 'Documentary', 'Film & Video', 'USD', '2014-10-04', 5000.0, '2014-09-02 15:28:52', 5395.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Tidewater Paws and Claws Magazine', 'Periodicals', 'Publishing', 'USD', '2014-11-19', 6500.0, '2014-10-20 16:12:29', 60.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Create Shoppe: Pre-order your DIY Gift Kit or craft party', 'DIY', 'Crafts', 'USD', '2015-04-18', 10000.0, '2015-03-19 17:07:36', 10107.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['After Death', 'Film & Video', 'Film & Video', 'USD', '2015-02-06', 3000.0, '2015-01-07 23:26:30', 409.0, 'undefined']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Ai1 Music Group Witness Greatness Campaign', 'Hip-Hop', 'Music', 'USD', '2013-07-14', 1700.0, '2013-06-21 15:19:57', 0.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Utah Buddhist Art Festival', 'Performance Art', 'Art', 'USD', '2012-10-21', 1500.0, '2012-08-22 19:14:29', 1500.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Recipe and Grocery Manager', 'Software', 'Technology', 'USD', '2017-09-28', 30000.0, '2017-08-29 12:43:29', 75.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "[\"Signal 99's new Album/DVD and Tour\", 'Rock', 'Music', 'USD', '2012-04-01', 5000.0, '2012-02-16 20:47:20', 551.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['USA! USA? Our Obsession To Be #1--And How It Hurts Us', 'Nonfiction', 'Publishing', 'USD', '2011-09-16', 14250.0, '2011-08-02 16:06:24', 6625.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Gluten Free FroZen Pizza: wholesale to Supermarkets in U.S', 'Food', 'Food', 'USD', '2014-09-14', 60000.0, '2014-08-15 21:59:54', 0.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['The End? A fantasy femslash show', 'Webseries', 'Film & Video', 'USD', '2013-09-13', 150.0, '2013-08-14 17:53:44', 201.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['TINY HOMES FOR THOSE IN NEED AROUND THE WORLD', 'Architecture', 'Design', 'USD', '2015-06-02', 10000.0, '2015-04-28 21:17:10', 7521.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Finding Stehfest', 'Documentary', 'Film & Video', 'USD', '2013-02-28', 10000.0, '2013-01-09 16:27:54', 865.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Wyze Season 1', 'Apparel', 'Fashion', 'USD', '2015-10-26', 5000.0, '2015-09-26 03:19:08', 0.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Sakari Watch Co - An American Micro Brand', 'Jewelry', 'Fashion', 'USD', '2016-06-26', 11000.0, '2016-05-27 18:11:58', 1.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Roo | Take Your Beer, Wine, & Booze for a Bike Ride', 'Product Design', 'Design', 'USD', '2015-06-01', 15000.0, '2015-05-01 15:38:05', 5238.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Relentless Ink: A tattoo style clothing line...with an edge!', 'Fashion', 'Fashion', 'USD', '2014-04-29', 35000.0, '2014-02-28 03:02:34', 576.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['In a Dark Dark House - Directed by Larry Moss', 'Theater', 'Theater', 'USD', '2014-08-15', 55000.0, '2014-07-01 20:29:39', 9316.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['NeoLucida - A Portable Camera Lucida for the 21st Century', 'Product Design', 'Design', 'USD', '2013-06-10', 15000.0, '2013-05-08 05:22:49', 424959.04, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Action Builder Flashcards for Students with Autism', 'Academic', 'Publishing', 'USD', '2017-04-24', 10000.0, '2017-03-20 02:56:38', 25.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Seed Box - Caja de Semillas (Canceled)', 'Spaces', 'Food', 'EUR', '2015-11-14', 650.0, '2015-10-15 22:59:19', 26.0, 'canceled']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['THE JOURNEY OF KINGS (Suspended)', 'Workshops', 'Dance', 'USD', '2014-12-15', 50000.0, '2014-11-15 02:10:24', 0.0, 'suspended']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['The Blankape: A Fun Blanket', 'Fashion', 'Fashion', 'USD', '2013-02-28', 10000.0, '2013-01-29 21:36:03', 1126.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['BIG SCHOOL: Huge, maniacal drawing for print & coloring book', 'Painting', 'Art', 'USD', '2016-11-05', 9500.0, '2016-10-04 13:01:34', 30381.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "[\"Life's Poetry\", 'Poetry', 'Publishing', 'USD', '2015-06-20', 15000.0, '2015-05-21 17:24:38', 0.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['The \"Runner\" Spring Break Acoustic Tour', 'Indie Rock', 'Music', 'USD', '2013-03-08', 100.0, '2013-02-15 17:44:06', 455.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "[\"Orange Curtain Review - OC's Yearly Theatre Magazine\", 'Print', 'Journalism', 'USD', '2015-05-25', 6000.0, '2015-03-26 15:35:15', 3.0, 'canceled']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Introspective Painting in the Amazon', 'Painting', 'Art', 'USD', '2011-10-20', 2500.0, '2011-09-25 03:30:22', 2611.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Leave A Message After The', 'Shorts', 'Film & Video', 'USD', '2014-04-05', 1500.0, '2014-03-06 22:57:23', 1760.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['The Palace of Dreams', 'Art', 'Art', 'GBP', '2017-11-01', 25000.0, '2017-10-11 19:51:25', 46100.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "[\"Let's make a 4 song EP.. for film/TV stardom!\", 'Rock', 'Music', 'USD', '2011-04-14', 4000.0, '2011-01-13 10:39:37', 0.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Ghost Tapes', 'Documentary', 'Film & Video', 'USD', '2012-12-06', 150.0, '2012-11-06 00:29:58', 372.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Shattered Time, Open Source CRPG', 'Video Games', 'Games', 'USD', '2014-03-07', 100000.0, '2014-02-04 16:13:27', 2836.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['\"K\"', 'Shorts', 'Film & Video', 'USD', '2011-01-01', 10000.0, '2010-10-03 18:01:17', 50.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "[\"Tea Descendants | Let's preserve the tea-making heritage.\", 'Small Batch', 'Food', 'SGD', '2017-02-25', 12000.0, '2017-01-11 04:30:06', 803.77, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['ZLDN: Insanely Comfortable Underwear', 'Apparel', 'Fashion', 'GBP', '2016-12-24', 6000.0, '2016-11-30 09:30:11', 7630.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "[\"All That's Left - Liberal Talk Radio in the Deep Red South\", 'Audio', 'Journalism', 'USD', '2016-06-15', 52000.0, '2016-05-16 00:22:08', 150.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Little Cabin', 'Art Books', 'Publishing', 'USD', '2014-04-05', 500.0, '2014-03-06 18:40:16', 660.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Flickit - Pizza Box Card Throwing Competition', 'Games', 'Games', 'AUD', '2017-11-02', 2000.0, '2017-10-12 10:05:51', 52.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['The Wonderful Wizard of Oz, Innovative Audio Book Experience', 'Music', 'Music', 'USD', '2013-01-03', 5500.0, '2012-12-04 06:15:57', 340.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['PRETTYPUKE X SEOUL', 'Documentary', 'Film & Video', 'USD', '2016-04-11', 6000.0, '2016-03-21 06:17:09', 6842.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Shadoweyes: Volume One', 'Graphic Novels', 'Comics', 'USD', '2015-11-27', 20000.0, '2015-10-28 22:00:08', 26434.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Nihilos Draconum: Rise of a Warrior', 'Fiction', 'Publishing', 'USD', '2012-12-18', 3000.0, '2012-10-19 22:33:54', 30.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Gerrymandering', 'Documentary', 'Film & Video', 'USD', '2010-06-20', 7500.0, '2010-05-20 19:18:14', 0.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Love Poems for Butchers', 'Nonfiction', 'Publishing', 'CAD', '2016-06-03', 7500.0, '2016-05-04 22:19:16', 5094.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Bite Of The Black Dog', 'Documentary', 'Film & Video', 'CAD', '2016-04-21', 5000.0, '2016-03-21 01:18:18', 241.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Choku Fish- multi functional chopsticks helper', 'Product Design', 'Design', 'DKK', '2017-10-11', 5000.0, '2017-09-11 17:13:45', 14328.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "[\"It's Time To Make Our Own Essential Oils 4 Our Candles!\", 'Candles', 'Crafts', 'USD', '2014-09-10', 9000.0, '2014-08-21 22:52:58', 225.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['GERIELLE SNACKS Restaurant (Canceled)', 'Restaurants', 'Food', 'EUR', '2015-05-25', 5000.0, '2015-03-27 21:23:47', 0.0, 'canceled']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Fantasy Orc Zombie Assault - by Darkraven Europe', 'Tabletop Games', 'Games', 'USD', '2017-08-10', 2000.0, '2017-07-05 22:14:02', 4070.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['PharmaEdu: Drug Education', 'Publishing', 'Publishing', 'USD', '2017-08-15', 10000.0, '2017-07-16 16:26:59', 0.0, 'canceled']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['TEST KICKSTARTER PROJECT EXAMPLE (Canceled)', 'Product Design', 'Design', 'GBP', '2014-04-19', 5000.0, '2014-03-20 22:17:34', 0.0, 'canceled']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Tales of the Pan American Highway', 'Documentary', 'Film & Video', 'USD', '2017-02-18', 500.0, '2016-12-23 00:45:53', 50.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Hairy Guy Gets Full Body Waxing', 'Comedy', 'Film & Video', 'USD', '2014-09-09', 10000.0, '2014-08-10 17:13:41', 0.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "[\"Player's Quest\", 'Mobile Games', 'Games', 'USD', '2018-01-26', 100000.0, '2017-12-27 04:18:21', 6.0, 'live']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Severed In Time - Science Fiction/Mystery Novel', 'Fiction', 'Publishing', 'GBP', '2015-06-24', 7000.0, '2015-05-25 01:59:51', 0.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Pixeom: The Personal Exchange Device', 'Technology', 'Technology', 'USD', '2014-02-21', 50000.0, '2014-01-07 09:01:36', 75923.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['You, Construct, The Future.', 'Performance Art', 'Art', 'USD', '2011-05-06', 3000.0, '2011-04-06 00:00:34', 3081.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['KholdPhuzion - Perceptionality, a voyage for purification', 'World Music', 'Music', 'USD', '2017-07-31', 12000.0, '2017-07-01 00:59:43', 22.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Send the Uncommon Charter HS Sabers to Scotland in July 2012', 'Theater', 'Theater', 'USD', '2011-12-19', 5000.0, '2011-10-20 22:21:50', 5460.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "[\"The Zomb E-Z - 'No Mess' Zombie Killing System\", 'Shorts', 'Film & Video', 'USD', '2010-12-25', 100.0, '2010-12-10 08:09:00', 500.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['A day in the life...', 'Publishing', 'Publishing', 'USD', '2014-09-17', 30000.0, '2014-08-18 01:31:56', 0.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['TurboHarp ELX: \"I Sing the Harp Electric\"', 'Product Design', 'Design', 'USD', '2011-07-14', 15000.0, '2011-06-07 05:39:22', 5685.62, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Mighty Meatballs \"Now that\\'s a Meatball!!\"', 'Food', 'Food', 'USD', '2016-04-10', 5500.0, '2016-03-11 22:55:59', 0.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['The Doctor is Out', 'Theater', 'Theater', 'USD', '2011-11-05', 4000.0, '2011-09-06 02:17:23', 175.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Danse Des Fleurs', 'Photography', 'Photography', 'USD', '2012-02-17', 3000.0, '2012-01-03 14:54:20', 0.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Fine Art for Five Dollars', 'Art', 'Art', 'USD', '2015-02-07', 2000.0, '2015-01-25 00:28:18', 90.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['The Present', 'Shorts', 'Film & Video', 'CAD', '2014-02-11', 4300.0, '2014-01-07 23:08:20', 4685.72, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Worming your Way to Immortality...', 'Academic', 'Publishing', 'AUD', '2014-10-11', 4000.0, '2014-09-12 07:56:37', 25.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Swift Justice (Canceled)', 'Fiction', 'Publishing', 'USD', '2012-04-11', 1000.0, '2012-02-13 17:59:49', 0.0, 'canceled']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['\"That Was the River, This Is the Sea\"', 'Theater', 'Theater', 'USD', '2011-04-14', 5000.0, '2011-01-13 05:26:27', 2505.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['The Fundamentals of Magic', 'Webseries', 'Film & Video', 'CAD', '2015-02-25', 1000.0, '2015-01-26 17:53:39', 1.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['STELLAR GHOSTS, ACTION SHOOTER GAME', 'Video Games', 'Games', 'USD', '2014-03-26', 50000.0, '2014-02-24 18:20:41', 6.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Hey, Brother: A Novel', 'Fiction', 'Publishing', 'USD', '2017-09-22', 8000.0, '2017-08-23 22:30:05', 701.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['ParaShoot 2.0 - Multi Use, Wearable Smart HD Camera', 'Technology', 'Technology', 'USD', '2013-10-01', 30000.0, '2013-08-14 07:04:51', 117358.0, 'suspended']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['A History of Nottingham: Residential Accounts.', 'Documentary', 'Film & Video', 'GBP', '2013-03-20', 10000.0, '2013-02-01 04:12:12', 16.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['CANCELLED', 'Shorts', 'Film & Video', 'USD', '2012-11-15', 74000.0, '2012-10-01 22:50:26', 50.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Pre-order loud white men & none of your business t-shirts', 'Art', 'Art', 'GBP', '2016-04-28', 500.0, '2016-03-29 23:41:03', 1006.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Elite Poker Chips - Solid Copper & Silver Poker Game Coins', 'Tabletop Games', 'Games', 'USD', '2017-02-24', 500.0, '2017-01-30 21:04:38', 1004.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['TimeArc - A Modern Day Science Fiction Techno-thriller', 'Fiction', 'Publishing', 'USD', '2016-11-18', 3500.0, '2016-10-18 22:47:04', 610.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Car Culture Apparel', 'Apparel', 'Fashion', 'USD', '2016-05-18', 5000.0, '2016-04-18 21:09:10', 214.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['A photo-documentary Journey of rediscovery', 'Photography', 'Photography', 'USD', '2012-07-17', 4500.0, '2012-06-17 07:49:37', 0.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['thegullyproject', 'Apparel', 'Fashion', 'USD', '2015-08-03', 5000.0, '2015-07-04 15:01:05', 395.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Die Zombie Die', 'Graphic Novels', 'Comics', 'CAD', '2015-08-22', 11000.0, '2015-06-23 03:20:16', 0.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Laser Engraved Wooden Collar Stays by Woodmarked', 'Design', 'Design', 'USD', '2014-09-17', 500.0, '2014-08-18 17:52:02', 670.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Sword & Plough', 'Fashion', 'Fashion', 'USD', '2013-05-15', 20000.0, '2013-04-15 17:00:37', 312161.01, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Simply Sweet Food Products - Diabetic/Low Carb Baking Mixes', 'Small Batch', 'Food', 'USD', '2015-05-21', 12000.0, '2015-04-21 23:55:09', 700.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Give A Little Good Advice', 'Comics', 'Comics', 'USD', '2013-01-15', 8400.0, '2012-12-16 16:55:54', 0.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['GODS and GODDESSES: Vol 2 The Fantasy Illustration Library', 'Art Books', 'Publishing', 'USD', '2015-12-13', 50000.0, '2015-11-13 22:41:29', 2751.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Log Cabin', 'Documentary', 'Film & Video', 'USD', '2012-01-04', 2500.0, '2011-11-05 01:08:58', 421.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['\"Hottest Places\" In the App Store', 'Apps', 'Technology', 'USD', '2016-07-28', 5000.0, '2016-06-28 20:42:24', 5.0, 'canceled']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['The VAVA Dash Cam: Capture the Road Ahead', 'Product Design', 'Design', 'USD', '2017-03-03', 25000.0, '2017-01-17 16:01:04', 425502.5, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Route 66 Coffee Table Book', 'Photobooks', 'Photography', 'USD', '2014-07-19', 4000.0, '2014-06-19 22:17:04', 5.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Alley Cat Tea \"the original fruit tea\" (Canceled)', 'Food', 'Food', 'USD', '2013-06-05', 26000.0, '2013-05-03 20:01:13', 493.0, 'canceled']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Containered living', 'Architecture', 'Design', 'GBP', '2016-03-09', 29000.0, '2016-02-08 20:17:20', 12.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['\"The School of Raw\"', 'Food', 'Food', 'USD', '2012-03-16', 45000.0, '2012-02-15 20:21:31', 1872.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Tomorrow Can Wait', 'Nonfiction', 'Publishing', 'USD', '2012-07-01', 6000.0, '2012-06-01 07:02:15', 7101.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Adam \"TEACHA\" Barnes is finishing his 1st Reggae album...', 'Music', 'Music', 'USD', '2013-07-22', 1500.0, '2013-07-02 03:51:47', 2.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['VICTUS Fruchtaufstrich probieren', 'Farms', 'Food', 'EUR', '2017-04-11', 1000.0, '2017-03-28 13:07:03', 188.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Driving Test Complete UK', 'Publishing', 'Publishing', 'GBP', '2016-10-07', 1500.0, '2016-09-07 21:49:16', 0.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Aspen Groove Recording Project X2', 'Jazz', 'Music', 'USD', '2013-05-14', 8150.0, '2013-04-16 23:30:11', 8535.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Temporary.', 'Shorts', 'Film & Video', 'USD', '2016-06-18', 25000.0, '2016-05-19 22:45:21', 32761.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Collapsible Sleep Comfort Tent', 'Gadgets', 'Technology', 'USD', '2015-05-02', 25000.0, '2015-03-19 21:35:02', 641.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Stench the Garlic-Eating Goat (Canceled)', \"Children's Books\", 'Publishing', 'USD', '2013-05-27', 39000.0, '2013-04-27 05:36:22', 0.0, 'canceled']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Art and Advocacy: Human Trafficking in the USA', 'Comics', 'Comics', 'USD', '2012-03-20', 4000.0, '2012-01-20 06:22:25', 4352.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "[\"How I became a princess: Luna's Story\", \"Children's Books\", 'Publishing', 'USD', '2017-09-06', 6000.0, '2017-08-07 16:27:07', 112.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['AFK - Gaming Web Series', 'Webseries', 'Film & Video', 'NZD', '2014-11-22', 15000.0, '2014-10-23 23:00:46', 16531.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Life is Beautiful - Visual and Melodic Journey around the UK', 'Webseries', 'Film & Video', 'GBP', '2016-11-23', 2000.0, '2016-10-24 13:13:21', 1.0, 'canceled']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "[\"The Stadium Glove - The Fans' Glove at Ballparks & Stadiums\", 'Product Design', 'Design', 'USD', '2017-04-07', 25000.0, '2017-03-15 17:00:59', 226.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Brainificience', 'Web', 'Technology', 'USD', '2014-10-31', 3400.0, '2014-10-07 00:28:12', 66.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['The 8-Way Travel Bag', 'Design', 'Design', 'USD', '2014-04-01', 6500.0, '2014-03-02 03:25:34', 1215.24, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Bone to the Dog - Feature Film', 'Film & Video', 'Film & Video', 'USD', '2011-07-25', 3000.0, '2011-05-26 22:06:09', 3076.0, 'successful']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['SUMMER COUNTRY ROCK MUSIC FEST 10TH JAN 2014 NORTHLAND NZ', 'Country & Folk', 'Music', 'NZD', '2013-12-17', 30000.0, '2013-11-27 21:03:51', 0.0, 'canceled']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Custom Party Menus For You (Canceled)', 'Events', 'Food', 'USD', '2014-08-08', 25.0, '2014-07-09 20:28:56', 0.0, 'canceled']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Crossy Race Crazy Road : A Real-Time Multiplayer Tab Racing', 'Mobile Games', 'Games', 'AUD', '2015-10-28', 40000.0, '2015-09-28 06:11:31', 69.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Scott The Mover', 'Television', 'Film & Video', 'USD', '2014-08-03', 100000.0, '2014-06-05 01:40:17', 125.0, 'failed']\n",
- "\n",
- "INSERT INTO \"Project\" (\"name\", \"category\", \"main_category\", \"currency\", \"deadline\", \"goal\", \"launched\", \"pledged\", \"state\") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)\n",
- "['Become a Digital Nomad - Build Websites and Work Remotely', 'Technology', 'Technology', 'USD', '2016-12-30', 1000.0, '2016-11-30 15:55:02', 6100.8, 'successful']\n",
- "\n",
- "ROLLBACK\n",
- "RELEASE CONNECTION\n"
- ]
- },
- {
- "output_type": "error",
- "ename": "KeyboardInterrupt",
- "evalue": "ignored",
- "traceback": [
- "\u001b[0;31m---------------------------------------------------------------------------\u001b[0m",
- "\u001b[0;31mKeyboardInterrupt\u001b[0m Traceback (most recent call last)",
- "\u001b[0;32m\u001b[0m in \u001b[0;36m\u001b[0;34m()\u001b[0m\n\u001b[0;32m----> 1\u001b[0;31m \u001b[0mcommit\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0m",
- "\u001b[0;32m/usr/local/lib/python3.7/dist-packages/pony/orm/core.py\u001b[0m in \u001b[0;36mcommit\u001b[0;34m()\u001b[0m\n",
- "\u001b[0;32m/usr/local/lib/python3.7/dist-packages/pony/utils/utils.py\u001b[0m in \u001b[0;36mcut_traceback\u001b[0;34m(func, *args, **kwargs)\u001b[0m\n\u001b[1;32m 59\u001b[0m \u001b[0;32mreturn\u001b[0m \u001b[0mfunc\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0;34m*\u001b[0m\u001b[0margs\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0;34m**\u001b[0m\u001b[0mkwargs\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 60\u001b[0m \u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0;32m---> 61\u001b[0;31m \u001b[0;32mtry\u001b[0m\u001b[0;34m:\u001b[0m \u001b[0;32mreturn\u001b[0m \u001b[0mfunc\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0;34m*\u001b[0m\u001b[0margs\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0;34m**\u001b[0m\u001b[0mkwargs\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0m\u001b[1;32m 62\u001b[0m \u001b[0;32mexcept\u001b[0m \u001b[0mAssertionError\u001b[0m\u001b[0;34m:\u001b[0m \u001b[0;32mraise\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 63\u001b[0m \u001b[0;32mexcept\u001b[0m \u001b[0mException\u001b[0m\u001b[0;34m:\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n",
- "\u001b[0;32m/usr/local/lib/python3.7/dist-packages/pony/orm/core.py\u001b[0m in \u001b[0;36mcommit\u001b[0;34m()\u001b[0m\n\u001b[1;32m 384\u001b[0m \u001b[0mcache\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mflush\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 385\u001b[0m \u001b[0;32mexcept\u001b[0m\u001b[0;34m:\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0;32m--> 386\u001b[0;31m \u001b[0mrollback_and_reraise\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0msys\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mexc_info\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0m\u001b[1;32m 387\u001b[0m \u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 388\u001b[0m \u001b[0mprimary_cache\u001b[0m \u001b[0;34m=\u001b[0m \u001b[0mcaches\u001b[0m\u001b[0;34m[\u001b[0m\u001b[0;36m0\u001b[0m\u001b[0;34m]\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n",
- "\u001b[0;32m/usr/local/lib/python3.7/dist-packages/pony/orm/core.py\u001b[0m in \u001b[0;36mrollback_and_reraise\u001b[0;34m(exc_info)\u001b[0m\n\u001b[1;32m 373\u001b[0m \u001b[0mrollback\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 374\u001b[0m \u001b[0;32mfinally\u001b[0m\u001b[0;34m:\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0;32m--> 375\u001b[0;31m \u001b[0mreraise\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0;34m*\u001b[0m\u001b[0mexc_info\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0m\u001b[1;32m 376\u001b[0m \u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 377\u001b[0m \u001b[0;34m@\u001b[0m\u001b[0mcut_traceback\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n",
- "\u001b[0;32m/usr/local/lib/python3.7/dist-packages/pony/utils/utils.py\u001b[0m in \u001b[0;36mreraise\u001b[0;34m(***failed resolving arguments***)\u001b[0m\n\u001b[1;32m 93\u001b[0m \u001b[0;32melse\u001b[0m\u001b[0;34m:\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 94\u001b[0m \u001b[0;32mdef\u001b[0m \u001b[0mreraise\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mexc_type\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0mexc\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0mtb\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m:\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0;32m---> 95\u001b[0;31m \u001b[0;32mtry\u001b[0m\u001b[0;34m:\u001b[0m \u001b[0;32mraise\u001b[0m \u001b[0mexc\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mwith_traceback\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mtb\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0m\u001b[1;32m 96\u001b[0m \u001b[0;32mfinally\u001b[0m\u001b[0;34m:\u001b[0m \u001b[0;32mdel\u001b[0m \u001b[0mexc\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0mtb\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 97\u001b[0m \u001b[0;34m\u001b[0m\u001b[0m\n",
- "\u001b[0;32m/usr/local/lib/python3.7/dist-packages/pony/orm/core.py\u001b[0m in \u001b[0;36mcommit\u001b[0;34m()\u001b[0m\n\u001b[1;32m 382\u001b[0m \u001b[0;32mtry\u001b[0m\u001b[0;34m:\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 383\u001b[0m \u001b[0;32mfor\u001b[0m \u001b[0mcache\u001b[0m \u001b[0;32min\u001b[0m \u001b[0mcaches\u001b[0m\u001b[0;34m:\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0;32m--> 384\u001b[0;31m \u001b[0mcache\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mflush\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0m\u001b[1;32m 385\u001b[0m \u001b[0;32mexcept\u001b[0m\u001b[0;34m:\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 386\u001b[0m \u001b[0mrollback_and_reraise\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0msys\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mexc_info\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n",
- "\u001b[0;32m/usr/local/lib/python3.7/dist-packages/pony/orm/core.py\u001b[0m in \u001b[0;36mflush\u001b[0;34m(cache)\u001b[0m\n\u001b[1;32m 1899\u001b[0m \u001b[0mattr\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mremove_m2m\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mremoved\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 1900\u001b[0m \u001b[0;32mfor\u001b[0m \u001b[0mobj\u001b[0m \u001b[0;32min\u001b[0m \u001b[0mcache\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mobjects_to_save\u001b[0m\u001b[0;34m:\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0;32m-> 1901\u001b[0;31m \u001b[0;32mif\u001b[0m \u001b[0mobj\u001b[0m \u001b[0;32mis\u001b[0m \u001b[0;32mnot\u001b[0m \u001b[0;32mNone\u001b[0m\u001b[0;34m:\u001b[0m \u001b[0mobj\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0m_save_\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0m\u001b[1;32m 1902\u001b[0m \u001b[0;32mfor\u001b[0m \u001b[0mattr\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0;34m(\u001b[0m\u001b[0madded\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0mremoved\u001b[0m\u001b[0;34m)\u001b[0m \u001b[0;32min\u001b[0m \u001b[0miteritems\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mmodified_m2m\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m:\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 1903\u001b[0m \u001b[0;32mif\u001b[0m \u001b[0;32mnot\u001b[0m \u001b[0madded\u001b[0m\u001b[0;34m:\u001b[0m \u001b[0;32mcontinue\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n",
- "\u001b[0;32m/usr/local/lib/python3.7/dist-packages/pony/orm/core.py\u001b[0m in \u001b[0;36m_save_\u001b[0;34m(obj, dependent_objects)\u001b[0m\n\u001b[1;32m 5435\u001b[0m \u001b[0mobj\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0m_save_principal_objects_\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mdependent_objects\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 5436\u001b[0m \u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0;32m-> 5437\u001b[0;31m \u001b[0;32mif\u001b[0m \u001b[0mstatus\u001b[0m \u001b[0;34m==\u001b[0m \u001b[0;34m'created'\u001b[0m\u001b[0;34m:\u001b[0m \u001b[0mobj\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0m_save_created_\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0m\u001b[1;32m 5438\u001b[0m \u001b[0;32melif\u001b[0m \u001b[0mstatus\u001b[0m \u001b[0;34m==\u001b[0m \u001b[0;34m'modified'\u001b[0m\u001b[0;34m:\u001b[0m \u001b[0mobj\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0m_save_updated_\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 5439\u001b[0m \u001b[0;32melif\u001b[0m \u001b[0mstatus\u001b[0m \u001b[0;34m==\u001b[0m \u001b[0;34m'marked_to_delete'\u001b[0m\u001b[0;34m:\u001b[0m \u001b[0mobj\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0m_save_deleted_\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n",
- "\u001b[0;32m/usr/local/lib/python3.7/dist-packages/pony/orm/core.py\u001b[0m in \u001b[0;36m_save_created_\u001b[0;34m(obj)\u001b[0m\n\u001b[1;32m 5297\u001b[0m \u001b[0mobj\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0m_rbits_\u001b[0m \u001b[0;34m=\u001b[0m \u001b[0mobj\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0m_all_bits_except_volatile_\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 5298\u001b[0m \u001b[0mobj\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0m_wbits_\u001b[0m \u001b[0;34m=\u001b[0m \u001b[0;36m0\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0;32m-> 5299\u001b[0;31m \u001b[0mobj\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0m_update_dbvals_\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0;32mTrue\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0mnew_dbvals\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0m\u001b[1;32m 5300\u001b[0m \u001b[0;32mdef\u001b[0m \u001b[0m_save_updated_\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mobj\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m:\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 5301\u001b[0m \u001b[0mupdate_columns\u001b[0m \u001b[0;34m=\u001b[0m \u001b[0;34m[\u001b[0m\u001b[0;34m]\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n",
- "\u001b[0;32m/usr/local/lib/python3.7/dist-packages/pony/orm/core.py\u001b[0m in \u001b[0;36m_update_dbvals_\u001b[0;34m(obj, after_create, new_dbvals)\u001b[0m\n\u001b[1;32m 5209\u001b[0m \u001b[0mdbvals\u001b[0m \u001b[0;34m=\u001b[0m \u001b[0mobj\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0m_dbvals_\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 5210\u001b[0m \u001b[0mcache_indexes\u001b[0m \u001b[0;34m=\u001b[0m \u001b[0mobj\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0m_session_cache_\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mindexes\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0;32m-> 5211\u001b[0;31m \u001b[0;32mfor\u001b[0m \u001b[0mattr\u001b[0m \u001b[0;32min\u001b[0m \u001b[0mobj\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0m_attrs_with_columns_\u001b[0m\u001b[0;34m:\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0m\u001b[1;32m 5212\u001b[0m \u001b[0;32mif\u001b[0m \u001b[0;32mnot\u001b[0m \u001b[0mbits\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mget\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mattr\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m:\u001b[0m \u001b[0;32mcontinue\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 5213\u001b[0m \u001b[0;32mif\u001b[0m \u001b[0mattr\u001b[0m \u001b[0;32mnot\u001b[0m \u001b[0;32min\u001b[0m \u001b[0mvals\u001b[0m\u001b[0;34m:\u001b[0m \u001b[0;32mcontinue\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n",
- "\u001b[0;31mKeyboardInterrupt\u001b[0m: "
+ "('3D Printing', 71193.3901171303)\n",
+ "('Zines', 2917.61621483376)\n"
]
}
]
},
- {
- "cell_type": "markdown",
- "metadata": {
- "id": "W1K5VTLoYCy3"
- },
- "source": [
- "### Please answer only **one** of the following questions according to your ID number (use the formula ** mod 3 +1**) "
- ]
- },
- {
- "cell_type": "code",
- "metadata": {
- "id": "vwlOZtVHYCy3"
- },
- "source": [
- "# which question to answer - put your ID number and run the code \n",
- "your_id = \"\"\n",
- "q = int(your_id) % 3 + 1\n",
- "print(\"You need to answer question number %s\" % q)"
- ],
- "execution_count": null,
- "outputs": []
- },
- {
- "cell_type": "markdown",
- "metadata": {
- "id": "gkVN8OnxYCy5"
- },
- "source": [
- "**Question 1:** On average which project category received the highest number of backers? (15 pt)"
- ]
- },
- {
- "cell_type": "code",
- "metadata": {
- "id": "vkhb156oYCy6"
- },
- "source": [
- ""
- ],
- "execution_count": null,
- "outputs": []
- },
- {
- "cell_type": "markdown",
- "metadata": {
- "id": "LTk5XnNGYCy7"
- },
- "source": [
- "**Question 2:** On average which project category received the highest pledged USD? (15 pt)"
- ]
- },
- {
- "cell_type": "code",
- "metadata": {
- "id": "DfiXdIneYCy8"
- },
- "source": [
- ""
- ],
- "execution_count": null,
- "outputs": []
- },
{
"cell_type": "markdown",
"metadata": {